├── .DS_Store ├── .vscode └── settings.json ├── Alarm-Clock ├── README.md ├── audio │ └── Alarm-ringtone.mp3 ├── images │ └── Alarm_Clock.gif ├── index.html ├── script.js └── styles.css ├── BMI-Calculator ├── index.html ├── script.js └── style.css ├── BlockRunnerGame ├── Readme.md ├── index.html ├── script.js └── style.css ├── BooksPerSecond ├── LICENSE ├── README.md ├── books-per-second │ ├── .gitignore │ ├── README.md │ ├── components │ │ ├── landing.js │ │ ├── navbar.js │ │ ├── search.js │ │ └── timer.js │ ├── context │ │ ├── GlobalContext.js │ │ └── GlobalState.js │ ├── contracts │ │ ├── Layer.json │ │ └── layer.sol │ ├── jsconfig.json │ ├── next.config.js │ ├── package-lock.json │ ├── package.json │ ├── pages │ │ ├── _app.js │ │ ├── _document.js │ │ ├── api │ │ │ └── hello.js │ │ ├── index.js │ │ ├── preview │ │ │ └── [isbn].js │ │ └── searchpage.js │ ├── postcss.config.js │ ├── public │ │ ├── favicon.ico │ │ ├── next.svg │ │ └── vercel.svg │ ├── styles │ │ └── globals.css │ └── tailwind.config.js ├── index.js └── package-lock.json ├── BreakingBadQuotesGenerator ├── generate.js ├── index.html ├── logo.png └── style.css ├── BurgerEye ├── README.md ├── burger.png ├── favicon.png ├── index.html ├── index.js └── style.css ├── Calculator ├── .gitattributes ├── README.md ├── index.html ├── script.js └── styles.css ├── Countdown Timer ├── index.html ├── script.js └── style.css ├── CustomPasswordGenerator ├── index.html ├── script.js └── styles.css ├── DevDetective ├── assets │ ├── .DS_Store │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── images │ │ ├── company-icon.svg │ │ ├── location-icon.svg │ │ ├── moon-icon.svg │ │ ├── search-icon.svg │ │ ├── sun-icon.svg │ │ ├── twitter-icon.svg │ │ └── website-icon.svg │ └── site.webmanifest ├── index.html ├── script.js └── styles.css ├── Drag-and-drop ├── index.html ├── index.js └── style.css ├── DrummerKit-Game ├── assets │ └── images │ │ └── background.jpg ├── css │ └── style.css ├── index.html ├── js │ └── index.js ├── readme.md └── sounds │ ├── boom.wav │ ├── clap.wav │ ├── hihat.wav │ ├── kick.wav │ ├── openhat.wav │ ├── ride.wav │ ├── snare.wav │ ├── tink.wav │ └── tom.wav ├── ExpenseTracker ├── index.html ├── script.js └── styles.css ├── Fall Game ├── background_sound.mp3 ├── index.html ├── parallax_background.gif ├── script.js └── style.css ├── Flip game ├── app.js ├── image │ ├── blank.png │ ├── cheeseburger.png │ ├── fries.png │ ├── hotdog.png │ ├── ice-cream.png │ ├── milkshake.png │ ├── pizza.png │ └── white.png ├── index.html └── style.css ├── Form Validation Website ├── README.md ├── back2.jfif ├── index.html └── style.css ├── Github Detective ├── Images │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── company-icon.svg │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── location-icon.svg │ ├── moon-icon.svg │ ├── search-icon.svg │ ├── site.webmanifest │ ├── sun-icon.svg │ ├── twitter-icon.svg │ └── website-icon.svg ├── index.html ├── script.js └── style.css ├── HackathonFinder ├── css │ ├── responsive.css │ └── style.css ├── index.html └── js │ └── index.js ├── JS-INTERVIEW-QUESTIONS.md ├── JavaScript-Notes-Application ├── images │ ├── delete.png │ ├── edit.png │ └── notes.png ├── index.html ├── script.js └── style.css ├── LinkedinHeadlineGenerator ├── index.html ├── script.js └── styles.css ├── Maze Generator ├── index.html ├── maze.js ├── settings.js └── style.css ├── Memory Game ├── index.html └── style.css ├── MineSweeper ├── bomb.png ├── box.js ├── index.html ├── main.js ├── stopwatch.js └── style.css ├── MiniCalender ├── index.html ├── script.js └── style.css ├── Moving Eyes ├── app.js ├── index.html └── style.css ├── Notes-App-wth-OOP ├── index.html ├── script.js └── styles.css ├── PasswordGeneratorWebsite ├── index.html └── script.js ├── Piano ├── index.html ├── index.js ├── notes │ ├── A.mp3 │ ├── Ab.mp3 │ ├── B.mp3 │ ├── Bb.mp3 │ ├── C.mp3 │ ├── D.mp3 │ ├── Db.mp3 │ ├── E.mp3 │ ├── Eb.mp3 │ ├── F.mp3 │ ├── G.mp3 │ └── Gb.mp3 └── style.css ├── PushingPixels ├── README.md ├── bg.jpg ├── favicon.ico ├── index.html ├── light-switch.png ├── lightbulb.png ├── logo-shadow.png ├── logo.png ├── script.js └── style.css ├── QuoteGenerator ├── index.css ├── index.html └── index.js ├── README.md ├── RandomyCards ├── 1player.html ├── 2player.html ├── cards │ ├── .DS_Store │ ├── 1-C.png │ ├── 1-D.png │ ├── 1-H.png │ ├── 1-S.png │ ├── 2-C.png │ ├── 2-D.png │ ├── 2-H.png │ ├── 2-S.png │ ├── 3-C.png │ ├── 3-D.png │ ├── 3-H.png │ ├── 3-S.png │ ├── 4-C.png │ ├── 4-D.png │ ├── 4-H.png │ ├── 4-S.png │ ├── 5-C.png │ ├── 5-D.png │ ├── 5-H.png │ ├── 5-S.png │ ├── 6-C.png │ ├── 6-D.png │ ├── 6-H.png │ ├── 6-S.png │ ├── 7-C.png │ ├── 7-D.png │ ├── 7-H.png │ ├── 7-S.png │ ├── 8-C.png │ ├── 8-D.png │ ├── 8-H.png │ ├── 8-S.png │ ├── 9-C.png │ ├── 9-D.png │ ├── 9-H.png │ ├── 9-S.png │ ├── BACK.png │ ├── J-B.png │ ├── J-C.png │ ├── J-D.png │ ├── J-H.png │ ├── J-R.png │ ├── J-S.png │ ├── K-C.png │ ├── K-D.png │ ├── K-H.png │ ├── K-S.png │ ├── Q-C.png │ ├── Q-D.png │ ├── Q-H.png │ ├── Q-S.png │ ├── T-C.png │ ├── T-D.png │ ├── T-H.png │ └── T-S.png ├── css │ └── styles.css ├── images │ ├── bg.jpg │ └── deck.png ├── index.html └── js │ ├── p1script.js │ └── p2script.js ├── SnakeGame ├── Resources.txt ├── css │ ├── popup.css │ └── style.css ├── img │ ├── bg.jpg │ └── logo.png ├── index.html ├── js │ └── index.js └── music │ ├── food.mp3 │ ├── gameover.mp3 │ ├── move.mp3 │ └── music.mp3 ├── SortingElements ├── css │ └── style.css ├── index.html └── js │ └── index.js ├── Space-Invaders-Game ├── Screenshot 2023-10-21 at 10.28.56 PM.png ├── images │ ├── button.png │ ├── invader.png │ ├── spaceship.png │ └── startScreenBackground.png ├── index.html ├── index.js └── readme.md ├── Speech Detection └── index.html ├── Speech Synthesis ├── index.html └── style.css ├── SpinWheel ├── index.html ├── script.js └── style.css ├── StackQueueVisualize ├── README.md ├── index.html ├── queue.html ├── script1.js ├── script2.js ├── stack.html └── style.css ├── Stick Hero Game ├── Readme.md ├── index.html ├── index.js └── style.css ├── StickHero-Game ├── Js │ └── index.js ├── css │ └── style.css ├── index.html └── readme.md ├── Stopwatch ├── index.html ├── script.js └── style.css ├── TemperatureConverter ├── index.html ├── script.js └── style.css ├── Todo-Lists ├── index.html ├── script.js └── style.css ├── Voice Generator ├── index.html ├── script.js └── style.css ├── Weather-application ├── index.html ├── script.js ├── styles.css └── unknown.pct ├── Whack A Mole ├── dirt.svg ├── index.html ├── mole.svg ├── script.js └── styles.css ├── glassMorphismDigitalClock ├── index.html ├── script.js └── style.css ├── gradiuntDigitalClock ├── index.html ├── script.js └── style.css ├── guess-the-number ├── index.html ├── script.js └── style.css ├── hackingTerminal ├── index.html ├── script.js └── style.css ├── image-gallery ├── index.html └── style.css ├── imgs ├── Calculator.png ├── ExpenseTracker.jpg ├── Hack Among Us.png ├── MineSweeper.png ├── SpinningWheelGame.png ├── StackQueueVisualize.png ├── StopWatch.png ├── TodoLists.png ├── Voice_Generator.png ├── alarmclock.png ├── blockrunner.png ├── bmi.png ├── breakingbad.png ├── burgereye.png ├── countdown.png ├── detective.png ├── downfallgame.png ├── dragdrop.png ├── drummerkitgame.png ├── filpgame.png ├── flip_game_by_Aman.png ├── formvalidation.png ├── glassMorphisumClock.png ├── gradiuntDigitalClock.png ├── hackingMen.png ├── imggallary.png ├── jokesfetcher.png ├── js-clock.png ├── link.png ├── linkedinheadline.png ├── mazegeneratorgame.png ├── mini-calender.png ├── moving-eyes.png ├── notes.png ├── passwordgen.png ├── piano.png ├── pig-game.png ├── pushing-pixels.png ├── quiz_app.png ├── randomQuotes.png ├── rockPaper.png ├── snake.png ├── speech detection.png ├── speechsynthesis.png ├── todo.png ├── weather.jpeg └── whack a mole.png ├── index.html ├── jokesFetcher ├── index.html ├── script.js └── style.css ├── js-clock ├── index.html ├── main.css └── script.js ├── meme-generator ├── index.html ├── index.js └── style.css ├── openlink.js ├── passwordGenerator ├── password.css ├── password.html └── password.js ├── pig-game ├── dice-1.png ├── dice-2.png ├── dice-3.png ├── dice-4.png ├── dice-5.png ├── dice-6.png ├── index.html ├── script.js └── style.css ├── project.js ├── quiz_app ├── index.html ├── script.js └── styles.css ├── rock-paper-scissors ├── Paper-emoji.png ├── Rock-emoji.png ├── Scissors-emoji.png ├── index.html ├── rcp.js └── style.css ├── script.js ├── style.css └── tic-tac-toe-game ├── index.html ├── script.js └── style.css /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/.DS_Store -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /Alarm-Clock/README.md: -------------------------------------------------------------------------------- 1 | # Alarm-Clock 2 | -------------------------------------------------------------------------------- /Alarm-Clock/audio/Alarm-ringtone.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Alarm-Clock/audio/Alarm-ringtone.mp3 -------------------------------------------------------------------------------- /Alarm-Clock/images/Alarm_Clock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Alarm-Clock/images/Alarm_Clock.gif -------------------------------------------------------------------------------- /Alarm-Clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Alarm-Clock/index.html -------------------------------------------------------------------------------- /Alarm-Clock/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Alarm-Clock/script.js -------------------------------------------------------------------------------- /Alarm-Clock/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Alarm-Clock/styles.css -------------------------------------------------------------------------------- /BMI-Calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BMI-Calculator/index.html -------------------------------------------------------------------------------- /BMI-Calculator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BMI-Calculator/script.js -------------------------------------------------------------------------------- /BMI-Calculator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BMI-Calculator/style.css -------------------------------------------------------------------------------- /BlockRunnerGame/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BlockRunnerGame/Readme.md -------------------------------------------------------------------------------- /BlockRunnerGame/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BlockRunnerGame/index.html -------------------------------------------------------------------------------- /BlockRunnerGame/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BlockRunnerGame/script.js -------------------------------------------------------------------------------- /BlockRunnerGame/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BlockRunnerGame/style.css -------------------------------------------------------------------------------- /BooksPerSecond/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/LICENSE -------------------------------------------------------------------------------- /BooksPerSecond/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/README.md -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/.gitignore -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/README.md -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/components/landing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/components/landing.js -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/components/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/components/navbar.js -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/components/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/components/search.js -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/components/timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/components/timer.js -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/context/GlobalContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/context/GlobalContext.js -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/context/GlobalState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/context/GlobalState.js -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/contracts/Layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/contracts/Layer.json -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/contracts/layer.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/contracts/layer.sol -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/jsconfig.json -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/next.config.js -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/package-lock.json -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/package.json -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/pages/_app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/pages/_app.js -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/pages/_document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/pages/_document.js -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/pages/api/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/pages/api/hello.js -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/pages/index.js -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/pages/preview/[isbn].js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/pages/preview/[isbn].js -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/pages/searchpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/pages/searchpage.js -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/postcss.config.js -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/public/favicon.ico -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/public/next.svg -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/public/vercel.svg -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/styles/globals.css -------------------------------------------------------------------------------- /BooksPerSecond/books-per-second/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/books-per-second/tailwind.config.js -------------------------------------------------------------------------------- /BooksPerSecond/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/index.js -------------------------------------------------------------------------------- /BooksPerSecond/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BooksPerSecond/package-lock.json -------------------------------------------------------------------------------- /BreakingBadQuotesGenerator/generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BreakingBadQuotesGenerator/generate.js -------------------------------------------------------------------------------- /BreakingBadQuotesGenerator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BreakingBadQuotesGenerator/index.html -------------------------------------------------------------------------------- /BreakingBadQuotesGenerator/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BreakingBadQuotesGenerator/logo.png -------------------------------------------------------------------------------- /BreakingBadQuotesGenerator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BreakingBadQuotesGenerator/style.css -------------------------------------------------------------------------------- /BurgerEye/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BurgerEye/README.md -------------------------------------------------------------------------------- /BurgerEye/burger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BurgerEye/burger.png -------------------------------------------------------------------------------- /BurgerEye/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BurgerEye/favicon.png -------------------------------------------------------------------------------- /BurgerEye/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BurgerEye/index.html -------------------------------------------------------------------------------- /BurgerEye/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BurgerEye/index.js -------------------------------------------------------------------------------- /BurgerEye/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/BurgerEye/style.css -------------------------------------------------------------------------------- /Calculator/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Calculator/.gitattributes -------------------------------------------------------------------------------- /Calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Calculator/README.md -------------------------------------------------------------------------------- /Calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Calculator/index.html -------------------------------------------------------------------------------- /Calculator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Calculator/script.js -------------------------------------------------------------------------------- /Calculator/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Calculator/styles.css -------------------------------------------------------------------------------- /Countdown Timer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Countdown Timer/index.html -------------------------------------------------------------------------------- /Countdown Timer/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Countdown Timer/script.js -------------------------------------------------------------------------------- /Countdown Timer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Countdown Timer/style.css -------------------------------------------------------------------------------- /CustomPasswordGenerator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/CustomPasswordGenerator/index.html -------------------------------------------------------------------------------- /CustomPasswordGenerator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/CustomPasswordGenerator/script.js -------------------------------------------------------------------------------- /CustomPasswordGenerator/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/CustomPasswordGenerator/styles.css -------------------------------------------------------------------------------- /DevDetective/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/assets/.DS_Store -------------------------------------------------------------------------------- /DevDetective/assets/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/assets/android-chrome-192x192.png -------------------------------------------------------------------------------- /DevDetective/assets/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/assets/android-chrome-512x512.png -------------------------------------------------------------------------------- /DevDetective/assets/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/assets/apple-touch-icon.png -------------------------------------------------------------------------------- /DevDetective/assets/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/assets/favicon-16x16.png -------------------------------------------------------------------------------- /DevDetective/assets/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/assets/favicon-32x32.png -------------------------------------------------------------------------------- /DevDetective/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/assets/favicon.ico -------------------------------------------------------------------------------- /DevDetective/assets/images/company-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/assets/images/company-icon.svg -------------------------------------------------------------------------------- /DevDetective/assets/images/location-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/assets/images/location-icon.svg -------------------------------------------------------------------------------- /DevDetective/assets/images/moon-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/assets/images/moon-icon.svg -------------------------------------------------------------------------------- /DevDetective/assets/images/search-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/assets/images/search-icon.svg -------------------------------------------------------------------------------- /DevDetective/assets/images/sun-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/assets/images/sun-icon.svg -------------------------------------------------------------------------------- /DevDetective/assets/images/twitter-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/assets/images/twitter-icon.svg -------------------------------------------------------------------------------- /DevDetective/assets/images/website-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/assets/images/website-icon.svg -------------------------------------------------------------------------------- /DevDetective/assets/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/assets/site.webmanifest -------------------------------------------------------------------------------- /DevDetective/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/index.html -------------------------------------------------------------------------------- /DevDetective/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/script.js -------------------------------------------------------------------------------- /DevDetective/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DevDetective/styles.css -------------------------------------------------------------------------------- /Drag-and-drop/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Drag-and-drop/index.html -------------------------------------------------------------------------------- /Drag-and-drop/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Drag-and-drop/index.js -------------------------------------------------------------------------------- /Drag-and-drop/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Drag-and-drop/style.css -------------------------------------------------------------------------------- /DrummerKit-Game/assets/images/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DrummerKit-Game/assets/images/background.jpg -------------------------------------------------------------------------------- /DrummerKit-Game/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DrummerKit-Game/css/style.css -------------------------------------------------------------------------------- /DrummerKit-Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DrummerKit-Game/index.html -------------------------------------------------------------------------------- /DrummerKit-Game/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DrummerKit-Game/js/index.js -------------------------------------------------------------------------------- /DrummerKit-Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DrummerKit-Game/readme.md -------------------------------------------------------------------------------- /DrummerKit-Game/sounds/boom.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DrummerKit-Game/sounds/boom.wav -------------------------------------------------------------------------------- /DrummerKit-Game/sounds/clap.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DrummerKit-Game/sounds/clap.wav -------------------------------------------------------------------------------- /DrummerKit-Game/sounds/hihat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DrummerKit-Game/sounds/hihat.wav -------------------------------------------------------------------------------- /DrummerKit-Game/sounds/kick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DrummerKit-Game/sounds/kick.wav -------------------------------------------------------------------------------- /DrummerKit-Game/sounds/openhat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DrummerKit-Game/sounds/openhat.wav -------------------------------------------------------------------------------- /DrummerKit-Game/sounds/ride.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DrummerKit-Game/sounds/ride.wav -------------------------------------------------------------------------------- /DrummerKit-Game/sounds/snare.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DrummerKit-Game/sounds/snare.wav -------------------------------------------------------------------------------- /DrummerKit-Game/sounds/tink.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DrummerKit-Game/sounds/tink.wav -------------------------------------------------------------------------------- /DrummerKit-Game/sounds/tom.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/DrummerKit-Game/sounds/tom.wav -------------------------------------------------------------------------------- /ExpenseTracker/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/ExpenseTracker/index.html -------------------------------------------------------------------------------- /ExpenseTracker/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/ExpenseTracker/script.js -------------------------------------------------------------------------------- /ExpenseTracker/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/ExpenseTracker/styles.css -------------------------------------------------------------------------------- /Fall Game/background_sound.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Fall Game/background_sound.mp3 -------------------------------------------------------------------------------- /Fall Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Fall Game/index.html -------------------------------------------------------------------------------- /Fall Game/parallax_background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Fall Game/parallax_background.gif -------------------------------------------------------------------------------- /Fall Game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Fall Game/script.js -------------------------------------------------------------------------------- /Fall Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Fall Game/style.css -------------------------------------------------------------------------------- /Flip game/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Flip game/app.js -------------------------------------------------------------------------------- /Flip game/image/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Flip game/image/blank.png -------------------------------------------------------------------------------- /Flip game/image/cheeseburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Flip game/image/cheeseburger.png -------------------------------------------------------------------------------- /Flip game/image/fries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Flip game/image/fries.png -------------------------------------------------------------------------------- /Flip game/image/hotdog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Flip game/image/hotdog.png -------------------------------------------------------------------------------- /Flip game/image/ice-cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Flip game/image/ice-cream.png -------------------------------------------------------------------------------- /Flip game/image/milkshake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Flip game/image/milkshake.png -------------------------------------------------------------------------------- /Flip game/image/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Flip game/image/pizza.png -------------------------------------------------------------------------------- /Flip game/image/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Flip game/image/white.png -------------------------------------------------------------------------------- /Flip game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Flip game/index.html -------------------------------------------------------------------------------- /Flip game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Flip game/style.css -------------------------------------------------------------------------------- /Form Validation Website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Form Validation Website/README.md -------------------------------------------------------------------------------- /Form Validation Website/back2.jfif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Form Validation Website/back2.jfif -------------------------------------------------------------------------------- /Form Validation Website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Form Validation Website/index.html -------------------------------------------------------------------------------- /Form Validation Website/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Form Validation Website/style.css -------------------------------------------------------------------------------- /Github Detective/Images/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/Images/android-chrome-192x192.png -------------------------------------------------------------------------------- /Github Detective/Images/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/Images/android-chrome-512x512.png -------------------------------------------------------------------------------- /Github Detective/Images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/Images/apple-touch-icon.png -------------------------------------------------------------------------------- /Github Detective/Images/company-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/Images/company-icon.svg -------------------------------------------------------------------------------- /Github Detective/Images/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/Images/favicon-16x16.png -------------------------------------------------------------------------------- /Github Detective/Images/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/Images/favicon-32x32.png -------------------------------------------------------------------------------- /Github Detective/Images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/Images/favicon.ico -------------------------------------------------------------------------------- /Github Detective/Images/location-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/Images/location-icon.svg -------------------------------------------------------------------------------- /Github Detective/Images/moon-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/Images/moon-icon.svg -------------------------------------------------------------------------------- /Github Detective/Images/search-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/Images/search-icon.svg -------------------------------------------------------------------------------- /Github Detective/Images/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/Images/site.webmanifest -------------------------------------------------------------------------------- /Github Detective/Images/sun-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/Images/sun-icon.svg -------------------------------------------------------------------------------- /Github Detective/Images/twitter-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/Images/twitter-icon.svg -------------------------------------------------------------------------------- /Github Detective/Images/website-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/Images/website-icon.svg -------------------------------------------------------------------------------- /Github Detective/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/index.html -------------------------------------------------------------------------------- /Github Detective/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/script.js -------------------------------------------------------------------------------- /Github Detective/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Github Detective/style.css -------------------------------------------------------------------------------- /HackathonFinder/css/responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/HackathonFinder/css/responsive.css -------------------------------------------------------------------------------- /HackathonFinder/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/HackathonFinder/css/style.css -------------------------------------------------------------------------------- /HackathonFinder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/HackathonFinder/index.html -------------------------------------------------------------------------------- /HackathonFinder/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/HackathonFinder/js/index.js -------------------------------------------------------------------------------- /JS-INTERVIEW-QUESTIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/JS-INTERVIEW-QUESTIONS.md -------------------------------------------------------------------------------- /JavaScript-Notes-Application/images/delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/JavaScript-Notes-Application/images/delete.png -------------------------------------------------------------------------------- /JavaScript-Notes-Application/images/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/JavaScript-Notes-Application/images/edit.png -------------------------------------------------------------------------------- /JavaScript-Notes-Application/images/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/JavaScript-Notes-Application/images/notes.png -------------------------------------------------------------------------------- /JavaScript-Notes-Application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/JavaScript-Notes-Application/index.html -------------------------------------------------------------------------------- /JavaScript-Notes-Application/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/JavaScript-Notes-Application/script.js -------------------------------------------------------------------------------- /JavaScript-Notes-Application/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/JavaScript-Notes-Application/style.css -------------------------------------------------------------------------------- /LinkedinHeadlineGenerator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/LinkedinHeadlineGenerator/index.html -------------------------------------------------------------------------------- /LinkedinHeadlineGenerator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/LinkedinHeadlineGenerator/script.js -------------------------------------------------------------------------------- /LinkedinHeadlineGenerator/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/LinkedinHeadlineGenerator/styles.css -------------------------------------------------------------------------------- /Maze Generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Maze Generator/index.html -------------------------------------------------------------------------------- /Maze Generator/maze.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Maze Generator/maze.js -------------------------------------------------------------------------------- /Maze Generator/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Maze Generator/settings.js -------------------------------------------------------------------------------- /Maze Generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Maze Generator/style.css -------------------------------------------------------------------------------- /Memory Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Memory Game/index.html -------------------------------------------------------------------------------- /Memory Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Memory Game/style.css -------------------------------------------------------------------------------- /MineSweeper/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/MineSweeper/bomb.png -------------------------------------------------------------------------------- /MineSweeper/box.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/MineSweeper/box.js -------------------------------------------------------------------------------- /MineSweeper/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/MineSweeper/index.html -------------------------------------------------------------------------------- /MineSweeper/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/MineSweeper/main.js -------------------------------------------------------------------------------- /MineSweeper/stopwatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/MineSweeper/stopwatch.js -------------------------------------------------------------------------------- /MineSweeper/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/MineSweeper/style.css -------------------------------------------------------------------------------- /MiniCalender/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/MiniCalender/index.html -------------------------------------------------------------------------------- /MiniCalender/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/MiniCalender/script.js -------------------------------------------------------------------------------- /MiniCalender/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/MiniCalender/style.css -------------------------------------------------------------------------------- /Moving Eyes/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Moving Eyes/app.js -------------------------------------------------------------------------------- /Moving Eyes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Moving Eyes/index.html -------------------------------------------------------------------------------- /Moving Eyes/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Moving Eyes/style.css -------------------------------------------------------------------------------- /Notes-App-wth-OOP/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Notes-App-wth-OOP/index.html -------------------------------------------------------------------------------- /Notes-App-wth-OOP/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Notes-App-wth-OOP/script.js -------------------------------------------------------------------------------- /Notes-App-wth-OOP/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Notes-App-wth-OOP/styles.css -------------------------------------------------------------------------------- /PasswordGeneratorWebsite/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/PasswordGeneratorWebsite/index.html -------------------------------------------------------------------------------- /PasswordGeneratorWebsite/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/PasswordGeneratorWebsite/script.js -------------------------------------------------------------------------------- /Piano/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Piano/index.html -------------------------------------------------------------------------------- /Piano/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Piano/index.js -------------------------------------------------------------------------------- /Piano/notes/A.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Piano/notes/A.mp3 -------------------------------------------------------------------------------- /Piano/notes/Ab.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Piano/notes/Ab.mp3 -------------------------------------------------------------------------------- /Piano/notes/B.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Piano/notes/B.mp3 -------------------------------------------------------------------------------- /Piano/notes/Bb.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Piano/notes/Bb.mp3 -------------------------------------------------------------------------------- /Piano/notes/C.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Piano/notes/C.mp3 -------------------------------------------------------------------------------- /Piano/notes/D.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Piano/notes/D.mp3 -------------------------------------------------------------------------------- /Piano/notes/Db.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Piano/notes/Db.mp3 -------------------------------------------------------------------------------- /Piano/notes/E.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Piano/notes/E.mp3 -------------------------------------------------------------------------------- /Piano/notes/Eb.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Piano/notes/Eb.mp3 -------------------------------------------------------------------------------- /Piano/notes/F.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Piano/notes/F.mp3 -------------------------------------------------------------------------------- /Piano/notes/G.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Piano/notes/G.mp3 -------------------------------------------------------------------------------- /Piano/notes/Gb.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Piano/notes/Gb.mp3 -------------------------------------------------------------------------------- /Piano/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Piano/style.css -------------------------------------------------------------------------------- /PushingPixels/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/PushingPixels/README.md -------------------------------------------------------------------------------- /PushingPixels/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/PushingPixels/bg.jpg -------------------------------------------------------------------------------- /PushingPixels/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/PushingPixels/favicon.ico -------------------------------------------------------------------------------- /PushingPixels/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/PushingPixels/index.html -------------------------------------------------------------------------------- /PushingPixels/light-switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/PushingPixels/light-switch.png -------------------------------------------------------------------------------- /PushingPixels/lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/PushingPixels/lightbulb.png -------------------------------------------------------------------------------- /PushingPixels/logo-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/PushingPixels/logo-shadow.png -------------------------------------------------------------------------------- /PushingPixels/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/PushingPixels/logo.png -------------------------------------------------------------------------------- /PushingPixels/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/PushingPixels/script.js -------------------------------------------------------------------------------- /PushingPixels/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/PushingPixels/style.css -------------------------------------------------------------------------------- /QuoteGenerator/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/QuoteGenerator/index.css -------------------------------------------------------------------------------- /QuoteGenerator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/QuoteGenerator/index.html -------------------------------------------------------------------------------- /QuoteGenerator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/QuoteGenerator/index.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/README.md -------------------------------------------------------------------------------- /RandomyCards/1player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/1player.html -------------------------------------------------------------------------------- /RandomyCards/2player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/2player.html -------------------------------------------------------------------------------- /RandomyCards/cards/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/.DS_Store -------------------------------------------------------------------------------- /RandomyCards/cards/1-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/1-C.png -------------------------------------------------------------------------------- /RandomyCards/cards/1-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/1-D.png -------------------------------------------------------------------------------- /RandomyCards/cards/1-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/1-H.png -------------------------------------------------------------------------------- /RandomyCards/cards/1-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/1-S.png -------------------------------------------------------------------------------- /RandomyCards/cards/2-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/2-C.png -------------------------------------------------------------------------------- /RandomyCards/cards/2-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/2-D.png -------------------------------------------------------------------------------- /RandomyCards/cards/2-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/2-H.png -------------------------------------------------------------------------------- /RandomyCards/cards/2-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/2-S.png -------------------------------------------------------------------------------- /RandomyCards/cards/3-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/3-C.png -------------------------------------------------------------------------------- /RandomyCards/cards/3-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/3-D.png -------------------------------------------------------------------------------- /RandomyCards/cards/3-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/3-H.png -------------------------------------------------------------------------------- /RandomyCards/cards/3-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/3-S.png -------------------------------------------------------------------------------- /RandomyCards/cards/4-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/4-C.png -------------------------------------------------------------------------------- /RandomyCards/cards/4-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/4-D.png -------------------------------------------------------------------------------- /RandomyCards/cards/4-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/4-H.png -------------------------------------------------------------------------------- /RandomyCards/cards/4-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/4-S.png -------------------------------------------------------------------------------- /RandomyCards/cards/5-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/5-C.png -------------------------------------------------------------------------------- /RandomyCards/cards/5-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/5-D.png -------------------------------------------------------------------------------- /RandomyCards/cards/5-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/5-H.png -------------------------------------------------------------------------------- /RandomyCards/cards/5-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/5-S.png -------------------------------------------------------------------------------- /RandomyCards/cards/6-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/6-C.png -------------------------------------------------------------------------------- /RandomyCards/cards/6-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/6-D.png -------------------------------------------------------------------------------- /RandomyCards/cards/6-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/6-H.png -------------------------------------------------------------------------------- /RandomyCards/cards/6-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/6-S.png -------------------------------------------------------------------------------- /RandomyCards/cards/7-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/7-C.png -------------------------------------------------------------------------------- /RandomyCards/cards/7-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/7-D.png -------------------------------------------------------------------------------- /RandomyCards/cards/7-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/7-H.png -------------------------------------------------------------------------------- /RandomyCards/cards/7-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/7-S.png -------------------------------------------------------------------------------- /RandomyCards/cards/8-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/8-C.png -------------------------------------------------------------------------------- /RandomyCards/cards/8-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/8-D.png -------------------------------------------------------------------------------- /RandomyCards/cards/8-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/8-H.png -------------------------------------------------------------------------------- /RandomyCards/cards/8-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/8-S.png -------------------------------------------------------------------------------- /RandomyCards/cards/9-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/9-C.png -------------------------------------------------------------------------------- /RandomyCards/cards/9-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/9-D.png -------------------------------------------------------------------------------- /RandomyCards/cards/9-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/9-H.png -------------------------------------------------------------------------------- /RandomyCards/cards/9-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/9-S.png -------------------------------------------------------------------------------- /RandomyCards/cards/BACK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/BACK.png -------------------------------------------------------------------------------- /RandomyCards/cards/J-B.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/J-B.png -------------------------------------------------------------------------------- /RandomyCards/cards/J-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/J-C.png -------------------------------------------------------------------------------- /RandomyCards/cards/J-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/J-D.png -------------------------------------------------------------------------------- /RandomyCards/cards/J-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/J-H.png -------------------------------------------------------------------------------- /RandomyCards/cards/J-R.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/J-R.png -------------------------------------------------------------------------------- /RandomyCards/cards/J-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/J-S.png -------------------------------------------------------------------------------- /RandomyCards/cards/K-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/K-C.png -------------------------------------------------------------------------------- /RandomyCards/cards/K-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/K-D.png -------------------------------------------------------------------------------- /RandomyCards/cards/K-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/K-H.png -------------------------------------------------------------------------------- /RandomyCards/cards/K-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/K-S.png -------------------------------------------------------------------------------- /RandomyCards/cards/Q-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/Q-C.png -------------------------------------------------------------------------------- /RandomyCards/cards/Q-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/Q-D.png -------------------------------------------------------------------------------- /RandomyCards/cards/Q-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/Q-H.png -------------------------------------------------------------------------------- /RandomyCards/cards/Q-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/Q-S.png -------------------------------------------------------------------------------- /RandomyCards/cards/T-C.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/T-C.png -------------------------------------------------------------------------------- /RandomyCards/cards/T-D.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/T-D.png -------------------------------------------------------------------------------- /RandomyCards/cards/T-H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/T-H.png -------------------------------------------------------------------------------- /RandomyCards/cards/T-S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/cards/T-S.png -------------------------------------------------------------------------------- /RandomyCards/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/css/styles.css -------------------------------------------------------------------------------- /RandomyCards/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/images/bg.jpg -------------------------------------------------------------------------------- /RandomyCards/images/deck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/images/deck.png -------------------------------------------------------------------------------- /RandomyCards/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/index.html -------------------------------------------------------------------------------- /RandomyCards/js/p1script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/js/p1script.js -------------------------------------------------------------------------------- /RandomyCards/js/p2script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/RandomyCards/js/p2script.js -------------------------------------------------------------------------------- /SnakeGame/Resources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SnakeGame/Resources.txt -------------------------------------------------------------------------------- /SnakeGame/css/popup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SnakeGame/css/popup.css -------------------------------------------------------------------------------- /SnakeGame/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SnakeGame/css/style.css -------------------------------------------------------------------------------- /SnakeGame/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SnakeGame/img/bg.jpg -------------------------------------------------------------------------------- /SnakeGame/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SnakeGame/img/logo.png -------------------------------------------------------------------------------- /SnakeGame/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SnakeGame/index.html -------------------------------------------------------------------------------- /SnakeGame/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SnakeGame/js/index.js -------------------------------------------------------------------------------- /SnakeGame/music/food.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SnakeGame/music/food.mp3 -------------------------------------------------------------------------------- /SnakeGame/music/gameover.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SnakeGame/music/gameover.mp3 -------------------------------------------------------------------------------- /SnakeGame/music/move.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SnakeGame/music/move.mp3 -------------------------------------------------------------------------------- /SnakeGame/music/music.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SnakeGame/music/music.mp3 -------------------------------------------------------------------------------- /SortingElements/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SortingElements/css/style.css -------------------------------------------------------------------------------- /SortingElements/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SortingElements/index.html -------------------------------------------------------------------------------- /SortingElements/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SortingElements/js/index.js -------------------------------------------------------------------------------- /Space-Invaders-Game/Screenshot 2023-10-21 at 10.28.56 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Space-Invaders-Game/Screenshot 2023-10-21 at 10.28.56 PM.png -------------------------------------------------------------------------------- /Space-Invaders-Game/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Space-Invaders-Game/images/button.png -------------------------------------------------------------------------------- /Space-Invaders-Game/images/invader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Space-Invaders-Game/images/invader.png -------------------------------------------------------------------------------- /Space-Invaders-Game/images/spaceship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Space-Invaders-Game/images/spaceship.png -------------------------------------------------------------------------------- /Space-Invaders-Game/images/startScreenBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Space-Invaders-Game/images/startScreenBackground.png -------------------------------------------------------------------------------- /Space-Invaders-Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Space-Invaders-Game/index.html -------------------------------------------------------------------------------- /Space-Invaders-Game/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Space-Invaders-Game/index.js -------------------------------------------------------------------------------- /Space-Invaders-Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Space-Invaders-Game/readme.md -------------------------------------------------------------------------------- /Speech Detection/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Speech Detection/index.html -------------------------------------------------------------------------------- /Speech Synthesis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Speech Synthesis/index.html -------------------------------------------------------------------------------- /Speech Synthesis/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Speech Synthesis/style.css -------------------------------------------------------------------------------- /SpinWheel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SpinWheel/index.html -------------------------------------------------------------------------------- /SpinWheel/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SpinWheel/script.js -------------------------------------------------------------------------------- /SpinWheel/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/SpinWheel/style.css -------------------------------------------------------------------------------- /StackQueueVisualize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/StackQueueVisualize/README.md -------------------------------------------------------------------------------- /StackQueueVisualize/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/StackQueueVisualize/index.html -------------------------------------------------------------------------------- /StackQueueVisualize/queue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/StackQueueVisualize/queue.html -------------------------------------------------------------------------------- /StackQueueVisualize/script1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/StackQueueVisualize/script1.js -------------------------------------------------------------------------------- /StackQueueVisualize/script2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/StackQueueVisualize/script2.js -------------------------------------------------------------------------------- /StackQueueVisualize/stack.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/StackQueueVisualize/stack.html -------------------------------------------------------------------------------- /StackQueueVisualize/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/StackQueueVisualize/style.css -------------------------------------------------------------------------------- /Stick Hero Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Stick Hero Game/Readme.md -------------------------------------------------------------------------------- /Stick Hero Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Stick Hero Game/index.html -------------------------------------------------------------------------------- /Stick Hero Game/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Stick Hero Game/index.js -------------------------------------------------------------------------------- /Stick Hero Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Stick Hero Game/style.css -------------------------------------------------------------------------------- /StickHero-Game/Js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/StickHero-Game/Js/index.js -------------------------------------------------------------------------------- /StickHero-Game/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/StickHero-Game/css/style.css -------------------------------------------------------------------------------- /StickHero-Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/StickHero-Game/index.html -------------------------------------------------------------------------------- /StickHero-Game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/StickHero-Game/readme.md -------------------------------------------------------------------------------- /Stopwatch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Stopwatch/index.html -------------------------------------------------------------------------------- /Stopwatch/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Stopwatch/script.js -------------------------------------------------------------------------------- /Stopwatch/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Stopwatch/style.css -------------------------------------------------------------------------------- /TemperatureConverter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/TemperatureConverter/index.html -------------------------------------------------------------------------------- /TemperatureConverter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/TemperatureConverter/script.js -------------------------------------------------------------------------------- /TemperatureConverter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/TemperatureConverter/style.css -------------------------------------------------------------------------------- /Todo-Lists/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Todo-Lists/index.html -------------------------------------------------------------------------------- /Todo-Lists/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Todo-Lists/script.js -------------------------------------------------------------------------------- /Todo-Lists/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Todo-Lists/style.css -------------------------------------------------------------------------------- /Voice Generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Voice Generator/index.html -------------------------------------------------------------------------------- /Voice Generator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Voice Generator/script.js -------------------------------------------------------------------------------- /Voice Generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Voice Generator/style.css -------------------------------------------------------------------------------- /Weather-application/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Weather-application/index.html -------------------------------------------------------------------------------- /Weather-application/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Weather-application/script.js -------------------------------------------------------------------------------- /Weather-application/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Weather-application/styles.css -------------------------------------------------------------------------------- /Weather-application/unknown.pct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Weather-application/unknown.pct -------------------------------------------------------------------------------- /Whack A Mole/dirt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Whack A Mole/dirt.svg -------------------------------------------------------------------------------- /Whack A Mole/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Whack A Mole/index.html -------------------------------------------------------------------------------- /Whack A Mole/mole.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Whack A Mole/mole.svg -------------------------------------------------------------------------------- /Whack A Mole/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Whack A Mole/script.js -------------------------------------------------------------------------------- /Whack A Mole/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/Whack A Mole/styles.css -------------------------------------------------------------------------------- /glassMorphismDigitalClock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/glassMorphismDigitalClock/index.html -------------------------------------------------------------------------------- /glassMorphismDigitalClock/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/glassMorphismDigitalClock/script.js -------------------------------------------------------------------------------- /glassMorphismDigitalClock/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/glassMorphismDigitalClock/style.css -------------------------------------------------------------------------------- /gradiuntDigitalClock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/gradiuntDigitalClock/index.html -------------------------------------------------------------------------------- /gradiuntDigitalClock/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/gradiuntDigitalClock/script.js -------------------------------------------------------------------------------- /gradiuntDigitalClock/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/gradiuntDigitalClock/style.css -------------------------------------------------------------------------------- /guess-the-number/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/guess-the-number/index.html -------------------------------------------------------------------------------- /guess-the-number/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/guess-the-number/script.js -------------------------------------------------------------------------------- /guess-the-number/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/guess-the-number/style.css -------------------------------------------------------------------------------- /hackingTerminal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/hackingTerminal/index.html -------------------------------------------------------------------------------- /hackingTerminal/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/hackingTerminal/script.js -------------------------------------------------------------------------------- /hackingTerminal/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/hackingTerminal/style.css -------------------------------------------------------------------------------- /image-gallery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/image-gallery/index.html -------------------------------------------------------------------------------- /image-gallery/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/image-gallery/style.css -------------------------------------------------------------------------------- /imgs/Calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/Calculator.png -------------------------------------------------------------------------------- /imgs/ExpenseTracker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/ExpenseTracker.jpg -------------------------------------------------------------------------------- /imgs/Hack Among Us.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/Hack Among Us.png -------------------------------------------------------------------------------- /imgs/MineSweeper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/MineSweeper.png -------------------------------------------------------------------------------- /imgs/SpinningWheelGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/SpinningWheelGame.png -------------------------------------------------------------------------------- /imgs/StackQueueVisualize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/StackQueueVisualize.png -------------------------------------------------------------------------------- /imgs/StopWatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/StopWatch.png -------------------------------------------------------------------------------- /imgs/TodoLists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/TodoLists.png -------------------------------------------------------------------------------- /imgs/Voice_Generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/Voice_Generator.png -------------------------------------------------------------------------------- /imgs/alarmclock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/alarmclock.png -------------------------------------------------------------------------------- /imgs/blockrunner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/blockrunner.png -------------------------------------------------------------------------------- /imgs/bmi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/bmi.png -------------------------------------------------------------------------------- /imgs/breakingbad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/breakingbad.png -------------------------------------------------------------------------------- /imgs/burgereye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/burgereye.png -------------------------------------------------------------------------------- /imgs/countdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/countdown.png -------------------------------------------------------------------------------- /imgs/detective.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/detective.png -------------------------------------------------------------------------------- /imgs/downfallgame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/downfallgame.png -------------------------------------------------------------------------------- /imgs/dragdrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/dragdrop.png -------------------------------------------------------------------------------- /imgs/drummerkitgame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/drummerkitgame.png -------------------------------------------------------------------------------- /imgs/filpgame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/filpgame.png -------------------------------------------------------------------------------- /imgs/flip_game_by_Aman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/flip_game_by_Aman.png -------------------------------------------------------------------------------- /imgs/formvalidation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/formvalidation.png -------------------------------------------------------------------------------- /imgs/glassMorphisumClock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/glassMorphisumClock.png -------------------------------------------------------------------------------- /imgs/gradiuntDigitalClock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/gradiuntDigitalClock.png -------------------------------------------------------------------------------- /imgs/hackingMen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/hackingMen.png -------------------------------------------------------------------------------- /imgs/imggallary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/imggallary.png -------------------------------------------------------------------------------- /imgs/jokesfetcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/jokesfetcher.png -------------------------------------------------------------------------------- /imgs/js-clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/js-clock.png -------------------------------------------------------------------------------- /imgs/link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/link.png -------------------------------------------------------------------------------- /imgs/linkedinheadline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/linkedinheadline.png -------------------------------------------------------------------------------- /imgs/mazegeneratorgame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/mazegeneratorgame.png -------------------------------------------------------------------------------- /imgs/mini-calender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/mini-calender.png -------------------------------------------------------------------------------- /imgs/moving-eyes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/moving-eyes.png -------------------------------------------------------------------------------- /imgs/notes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/notes.png -------------------------------------------------------------------------------- /imgs/passwordgen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/passwordgen.png -------------------------------------------------------------------------------- /imgs/piano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/piano.png -------------------------------------------------------------------------------- /imgs/pig-game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/pig-game.png -------------------------------------------------------------------------------- /imgs/pushing-pixels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/pushing-pixels.png -------------------------------------------------------------------------------- /imgs/quiz_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/quiz_app.png -------------------------------------------------------------------------------- /imgs/randomQuotes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/randomQuotes.png -------------------------------------------------------------------------------- /imgs/rockPaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/rockPaper.png -------------------------------------------------------------------------------- /imgs/snake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/snake.png -------------------------------------------------------------------------------- /imgs/speech detection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/speech detection.png -------------------------------------------------------------------------------- /imgs/speechsynthesis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/speechsynthesis.png -------------------------------------------------------------------------------- /imgs/todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/todo.png -------------------------------------------------------------------------------- /imgs/weather.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/weather.jpeg -------------------------------------------------------------------------------- /imgs/whack a mole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/imgs/whack a mole.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/index.html -------------------------------------------------------------------------------- /jokesFetcher/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/jokesFetcher/index.html -------------------------------------------------------------------------------- /jokesFetcher/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/jokesFetcher/script.js -------------------------------------------------------------------------------- /jokesFetcher/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/jokesFetcher/style.css -------------------------------------------------------------------------------- /js-clock/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/js-clock/index.html -------------------------------------------------------------------------------- /js-clock/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/js-clock/main.css -------------------------------------------------------------------------------- /js-clock/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/js-clock/script.js -------------------------------------------------------------------------------- /meme-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/meme-generator/index.html -------------------------------------------------------------------------------- /meme-generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/meme-generator/index.js -------------------------------------------------------------------------------- /meme-generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/meme-generator/style.css -------------------------------------------------------------------------------- /openlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/openlink.js -------------------------------------------------------------------------------- /passwordGenerator/password.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/passwordGenerator/password.css -------------------------------------------------------------------------------- /passwordGenerator/password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/passwordGenerator/password.html -------------------------------------------------------------------------------- /passwordGenerator/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/passwordGenerator/password.js -------------------------------------------------------------------------------- /pig-game/dice-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/pig-game/dice-1.png -------------------------------------------------------------------------------- /pig-game/dice-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/pig-game/dice-2.png -------------------------------------------------------------------------------- /pig-game/dice-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/pig-game/dice-3.png -------------------------------------------------------------------------------- /pig-game/dice-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/pig-game/dice-4.png -------------------------------------------------------------------------------- /pig-game/dice-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/pig-game/dice-5.png -------------------------------------------------------------------------------- /pig-game/dice-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/pig-game/dice-6.png -------------------------------------------------------------------------------- /pig-game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/pig-game/index.html -------------------------------------------------------------------------------- /pig-game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/pig-game/script.js -------------------------------------------------------------------------------- /pig-game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/pig-game/style.css -------------------------------------------------------------------------------- /project.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/project.js -------------------------------------------------------------------------------- /quiz_app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/quiz_app/index.html -------------------------------------------------------------------------------- /quiz_app/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/quiz_app/script.js -------------------------------------------------------------------------------- /quiz_app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/quiz_app/styles.css -------------------------------------------------------------------------------- /rock-paper-scissors/Paper-emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/rock-paper-scissors/Paper-emoji.png -------------------------------------------------------------------------------- /rock-paper-scissors/Rock-emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/rock-paper-scissors/Rock-emoji.png -------------------------------------------------------------------------------- /rock-paper-scissors/Scissors-emoji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/rock-paper-scissors/Scissors-emoji.png -------------------------------------------------------------------------------- /rock-paper-scissors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/rock-paper-scissors/index.html -------------------------------------------------------------------------------- /rock-paper-scissors/rcp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/rock-paper-scissors/rcp.js -------------------------------------------------------------------------------- /rock-paper-scissors/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/rock-paper-scissors/style.css -------------------------------------------------------------------------------- /script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/script.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/style.css -------------------------------------------------------------------------------- /tic-tac-toe-game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/tic-tac-toe-game/index.html -------------------------------------------------------------------------------- /tic-tac-toe-game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/tic-tac-toe-game/script.js -------------------------------------------------------------------------------- /tic-tac-toe-game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harshal255/Unique-Javascript/HEAD/tic-tac-toe-game/style.css --------------------------------------------------------------------------------