├── About_us ├── Images │ ├── gamma4.png │ ├── icons8-github-30.png │ └── icons8-twitter-30.png ├── about_us.html └── style.css ├── Machine_Learning_Model ├── Penguins │ ├── Penguins_Size.ipynb │ └── penguins_size.csv ├── PricePrediction │ ├── 50_Startups.csv │ ├── Classification.ipynb │ └── PricePrediction.ipynb └── SVM │ ├── digits_svm.ipynb │ └── iris_svm.ipynb ├── Projects ├── Airline_Reservation_System │ ├── Sql file 1.txt │ ├── Sql file 2.txt │ └── source code.txt ├── Data_Visualization_using_Matplot_and_Seaborne.ipynb ├── Food Blog Website │ ├── allpost copy.css │ ├── article.css │ ├── article.html │ ├── bg.jpg │ ├── bg1.jpg │ ├── bg5.jpg │ ├── bg50.jpg │ ├── home.html │ ├── login.css │ ├── login.html │ ├── mobile.css │ ├── profile.css │ ├── profile.html │ ├── profile.jpg │ ├── register.html │ ├── style.css │ ├── write.css │ └── write.html ├── Hotel Review Site │ ├── css │ │ └── style.css │ ├── image │ │ ├── a.png │ │ ├── aera.jpg │ │ ├── b1.jpg │ │ ├── b2.jpg │ │ ├── b3.jpg │ │ ├── c1.jpg │ │ ├── c2.jpg │ │ ├── c3.jpg │ │ ├── g1.jpg │ │ ├── g2.jpg │ │ ├── g3.jpg │ │ ├── g4.jpg │ │ ├── g5.jpg │ │ ├── home.png │ │ ├── line1.png │ │ ├── line2.png │ │ ├── logo.png │ │ ├── o1.jpg │ │ ├── o2.jpg │ │ ├── o3.jpg │ │ ├── o4.jpg │ │ ├── r.jpg │ │ ├── w.jpg │ │ ├── w2.jpg │ │ └── w3.jpg │ ├── index.html │ ├── js │ │ ├── jquery.countdown.js │ │ └── jquery.countdown.min.js │ └── text ├── Instagram-Clone │ ├── README.md │ ├── img │ │ ├── logo.png │ │ ├── pic1.jpeg │ │ ├── pic2.jpeg │ │ ├── pic3.jpg │ │ ├── post1.jpg │ │ ├── post2.jpg │ │ ├── post3.jpg │ │ ├── profile.jpg │ │ ├── profile10.jpg │ │ ├── profile2.jpg │ │ ├── profile3.jpg │ │ ├── profile4.jpg │ │ ├── profile5.jpg │ │ ├── profile6.jpg │ │ ├── profile7.jpg │ │ ├── profile8.jpg │ │ ├── profile9.jpg │ │ └── verify.png │ ├── index.html │ ├── index.html.txt │ ├── style.css │ └── style.css.txt ├── Spotify_Clone │ ├── Dance_Monkey.mp3 │ ├── covers │ │ ├── 1.jpg │ │ ├── 10.jpg │ │ ├── 2.jpg │ │ ├── 3.jpg │ │ ├── 4.jpg │ │ ├── 5.jpg │ │ ├── 6.jpg │ │ ├── 7.jpg │ │ ├── 8.jpg │ │ └── 9.jpg │ ├── icons │ │ ├── backward.svg │ │ ├── circle-pause-solid.svg │ │ ├── circle-play-solid.svg │ │ ├── forward.svg │ │ └── play-solid.svg │ ├── images │ │ ├── 73-light-green-gradient.jpg │ │ ├── Cool_guitar.jpg │ │ ├── RUgdhy.png │ │ ├── bg.jpg │ │ ├── glowing-musical-pentagram-background-with-sound-notes_1017-31220.webp │ │ ├── logo.png │ │ └── spotify-social-media-marketing-background-illustration-free-vector.webp │ ├── myscript.js │ ├── songs │ │ ├── 1.mp3 │ │ ├── 2.mp3 │ │ ├── 3.mp3 │ │ ├── 4.mp3 │ │ └── Dance_Monkey.mp3 │ ├── spotify.html │ └── style.css ├── Student-Management-System-Project-In-Python │ └── student.py ├── To do list │ ├── index.html │ ├── logic.js │ └── styles.css ├── rock-paper-scissors-game │ ├── app.js │ ├── index.html │ ├── paper.png │ ├── rock.png │ ├── scissor.png │ ├── style.css │ └── website link └── todo-app │ ├── img │ ├── bg-fade.jpg │ └── bg.jpg │ ├── index.html │ ├── practical_js.js │ └── style.css ├── README.md ├── SalaryPrediction └── SalaryPredictionML │ ├── SalaryPrediction.ipynb │ └── Salary_Data.csv ├── Titanic Classification.pdf └── magic notes ├── index.html └── js └── app.js /About_us/Images/gamma4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/About_us/Images/gamma4.png -------------------------------------------------------------------------------- /About_us/Images/icons8-github-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/About_us/Images/icons8-github-30.png -------------------------------------------------------------------------------- /About_us/Images/icons8-twitter-30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/About_us/Images/icons8-twitter-30.png -------------------------------------------------------------------------------- /About_us/about_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/About_us/about_us.html -------------------------------------------------------------------------------- /About_us/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/About_us/style.css -------------------------------------------------------------------------------- /Machine_Learning_Model/Penguins/Penguins_Size.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Machine_Learning_Model/Penguins/Penguins_Size.ipynb -------------------------------------------------------------------------------- /Machine_Learning_Model/Penguins/penguins_size.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Machine_Learning_Model/Penguins/penguins_size.csv -------------------------------------------------------------------------------- /Machine_Learning_Model/PricePrediction/50_Startups.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Machine_Learning_Model/PricePrediction/50_Startups.csv -------------------------------------------------------------------------------- /Machine_Learning_Model/PricePrediction/Classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Machine_Learning_Model/PricePrediction/Classification.ipynb -------------------------------------------------------------------------------- /Machine_Learning_Model/PricePrediction/PricePrediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Machine_Learning_Model/PricePrediction/PricePrediction.ipynb -------------------------------------------------------------------------------- /Machine_Learning_Model/SVM/digits_svm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Machine_Learning_Model/SVM/digits_svm.ipynb -------------------------------------------------------------------------------- /Machine_Learning_Model/SVM/iris_svm.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Machine_Learning_Model/SVM/iris_svm.ipynb -------------------------------------------------------------------------------- /Projects/Airline_Reservation_System/Sql file 1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Airline_Reservation_System/Sql file 1.txt -------------------------------------------------------------------------------- /Projects/Airline_Reservation_System/Sql file 2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Airline_Reservation_System/Sql file 2.txt -------------------------------------------------------------------------------- /Projects/Airline_Reservation_System/source code.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Airline_Reservation_System/source code.txt -------------------------------------------------------------------------------- /Projects/Data_Visualization_using_Matplot_and_Seaborne.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Data_Visualization_using_Matplot_and_Seaborne.ipynb -------------------------------------------------------------------------------- /Projects/Food Blog Website/allpost copy.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/allpost copy.css -------------------------------------------------------------------------------- /Projects/Food Blog Website/article.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/article.css -------------------------------------------------------------------------------- /Projects/Food Blog Website/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/article.html -------------------------------------------------------------------------------- /Projects/Food Blog Website/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/bg.jpg -------------------------------------------------------------------------------- /Projects/Food Blog Website/bg1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/bg1.jpg -------------------------------------------------------------------------------- /Projects/Food Blog Website/bg5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/bg5.jpg -------------------------------------------------------------------------------- /Projects/Food Blog Website/bg50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/bg50.jpg -------------------------------------------------------------------------------- /Projects/Food Blog Website/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/home.html -------------------------------------------------------------------------------- /Projects/Food Blog Website/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/login.css -------------------------------------------------------------------------------- /Projects/Food Blog Website/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/login.html -------------------------------------------------------------------------------- /Projects/Food Blog Website/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/mobile.css -------------------------------------------------------------------------------- /Projects/Food Blog Website/profile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/profile.css -------------------------------------------------------------------------------- /Projects/Food Blog Website/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/profile.html -------------------------------------------------------------------------------- /Projects/Food Blog Website/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/profile.jpg -------------------------------------------------------------------------------- /Projects/Food Blog Website/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/register.html -------------------------------------------------------------------------------- /Projects/Food Blog Website/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/style.css -------------------------------------------------------------------------------- /Projects/Food Blog Website/write.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/write.css -------------------------------------------------------------------------------- /Projects/Food Blog Website/write.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Food Blog Website/write.html -------------------------------------------------------------------------------- /Projects/Hotel Review Site/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/css/style.css -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/a.png -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/aera.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/aera.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/b1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/b1.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/b2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/b2.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/b3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/b3.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/c1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/c1.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/c2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/c2.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/c3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/c3.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/g1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/g1.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/g2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/g2.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/g3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/g3.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/g4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/g4.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/g5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/g5.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/home.png -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/line1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/line1.png -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/line2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/line2.png -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/logo.png -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/o1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/o1.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/o2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/o2.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/o3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/o3.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/o4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/o4.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/r.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/r.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/w.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/w.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/w2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/w2.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/image/w3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/image/w3.jpg -------------------------------------------------------------------------------- /Projects/Hotel Review Site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/index.html -------------------------------------------------------------------------------- /Projects/Hotel Review Site/js/jquery.countdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/js/jquery.countdown.js -------------------------------------------------------------------------------- /Projects/Hotel Review Site/js/jquery.countdown.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/js/jquery.countdown.min.js -------------------------------------------------------------------------------- /Projects/Hotel Review Site/text: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Hotel Review Site/text -------------------------------------------------------------------------------- /Projects/Instagram-Clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/README.md -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/logo.png -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/pic1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/pic1.jpeg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/pic2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/pic2.jpeg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/pic3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/pic3.jpg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/post1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/post1.jpg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/post2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/post2.jpg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/post3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/post3.jpg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/profile.jpg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/profile10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/profile10.jpg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/profile2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/profile2.jpg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/profile3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/profile3.jpg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/profile4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/profile4.jpg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/profile5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/profile5.jpg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/profile6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/profile6.jpg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/profile7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/profile7.jpg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/profile8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/profile8.jpg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/profile9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/profile9.jpg -------------------------------------------------------------------------------- /Projects/Instagram-Clone/img/verify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/img/verify.png -------------------------------------------------------------------------------- /Projects/Instagram-Clone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/index.html -------------------------------------------------------------------------------- /Projects/Instagram-Clone/index.html.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/index.html.txt -------------------------------------------------------------------------------- /Projects/Instagram-Clone/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/style.css -------------------------------------------------------------------------------- /Projects/Instagram-Clone/style.css.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Instagram-Clone/style.css.txt -------------------------------------------------------------------------------- /Projects/Spotify_Clone/Dance_Monkey.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/Dance_Monkey.mp3 -------------------------------------------------------------------------------- /Projects/Spotify_Clone/covers/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/covers/1.jpg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/covers/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/covers/10.jpg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/covers/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/covers/2.jpg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/covers/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/covers/3.jpg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/covers/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/covers/4.jpg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/covers/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/covers/5.jpg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/covers/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/covers/6.jpg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/covers/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/covers/7.jpg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/covers/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/covers/8.jpg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/covers/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/covers/9.jpg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/icons/backward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/icons/backward.svg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/icons/circle-pause-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/icons/circle-pause-solid.svg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/icons/circle-play-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/icons/circle-play-solid.svg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/icons/forward.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/icons/forward.svg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/icons/play-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/icons/play-solid.svg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/images/73-light-green-gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/images/73-light-green-gradient.jpg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/images/Cool_guitar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/images/Cool_guitar.jpg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/images/RUgdhy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/images/RUgdhy.png -------------------------------------------------------------------------------- /Projects/Spotify_Clone/images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/images/bg.jpg -------------------------------------------------------------------------------- /Projects/Spotify_Clone/images/glowing-musical-pentagram-background-with-sound-notes_1017-31220.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/images/glowing-musical-pentagram-background-with-sound-notes_1017-31220.webp -------------------------------------------------------------------------------- /Projects/Spotify_Clone/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/images/logo.png -------------------------------------------------------------------------------- /Projects/Spotify_Clone/images/spotify-social-media-marketing-background-illustration-free-vector.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/images/spotify-social-media-marketing-background-illustration-free-vector.webp -------------------------------------------------------------------------------- /Projects/Spotify_Clone/myscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/myscript.js -------------------------------------------------------------------------------- /Projects/Spotify_Clone/songs/1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/songs/1.mp3 -------------------------------------------------------------------------------- /Projects/Spotify_Clone/songs/2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/songs/2.mp3 -------------------------------------------------------------------------------- /Projects/Spotify_Clone/songs/3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/songs/3.mp3 -------------------------------------------------------------------------------- /Projects/Spotify_Clone/songs/4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/songs/4.mp3 -------------------------------------------------------------------------------- /Projects/Spotify_Clone/songs/Dance_Monkey.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/songs/Dance_Monkey.mp3 -------------------------------------------------------------------------------- /Projects/Spotify_Clone/spotify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/spotify.html -------------------------------------------------------------------------------- /Projects/Spotify_Clone/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Spotify_Clone/style.css -------------------------------------------------------------------------------- /Projects/Student-Management-System-Project-In-Python/student.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/Student-Management-System-Project-In-Python/student.py -------------------------------------------------------------------------------- /Projects/To do list/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/To do list/index.html -------------------------------------------------------------------------------- /Projects/To do list/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/To do list/logic.js -------------------------------------------------------------------------------- /Projects/To do list/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/To do list/styles.css -------------------------------------------------------------------------------- /Projects/rock-paper-scissors-game/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/rock-paper-scissors-game/app.js -------------------------------------------------------------------------------- /Projects/rock-paper-scissors-game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/rock-paper-scissors-game/index.html -------------------------------------------------------------------------------- /Projects/rock-paper-scissors-game/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/rock-paper-scissors-game/paper.png -------------------------------------------------------------------------------- /Projects/rock-paper-scissors-game/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/rock-paper-scissors-game/rock.png -------------------------------------------------------------------------------- /Projects/rock-paper-scissors-game/scissor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/rock-paper-scissors-game/scissor.png -------------------------------------------------------------------------------- /Projects/rock-paper-scissors-game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/rock-paper-scissors-game/style.css -------------------------------------------------------------------------------- /Projects/rock-paper-scissors-game/website link: -------------------------------------------------------------------------------- 1 | rock-paper-scissors-game0302.netlify.app/ 2 | -------------------------------------------------------------------------------- /Projects/todo-app/img/bg-fade.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/todo-app/img/bg-fade.jpg -------------------------------------------------------------------------------- /Projects/todo-app/img/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/todo-app/img/bg.jpg -------------------------------------------------------------------------------- /Projects/todo-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/todo-app/index.html -------------------------------------------------------------------------------- /Projects/todo-app/practical_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/todo-app/practical_js.js -------------------------------------------------------------------------------- /Projects/todo-app/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Projects/todo-app/style.css -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/README.md -------------------------------------------------------------------------------- /SalaryPrediction/SalaryPredictionML/SalaryPrediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/SalaryPrediction/SalaryPredictionML/SalaryPrediction.ipynb -------------------------------------------------------------------------------- /SalaryPrediction/SalaryPredictionML/Salary_Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/SalaryPrediction/SalaryPredictionML/Salary_Data.csv -------------------------------------------------------------------------------- /Titanic Classification.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/Titanic Classification.pdf -------------------------------------------------------------------------------- /magic notes/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/magic notes/index.html -------------------------------------------------------------------------------- /magic notes/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acash1809/Open-Source/HEAD/magic notes/js/app.js --------------------------------------------------------------------------------