├── .DS_Store ├── .github ├── ISSUE_TEMPLATE │ └── issue-report.md └── pull_request_template.md ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTION.md ├── LICENSE.md ├── README.md ├── coding_freshmen ├── .vscode │ └── settings.json ├── C++ │ ├── ALOK_RANJAN_JOSHI │ │ ├── ANAGRAM.cpp │ │ ├── MAXIMUM_SUM.cpp │ │ ├── PATTERN_FINDER.cpp │ │ ├── README.md │ │ └── ROMAN_TO_INTEGER.cpp │ ├── Anagram_prajwal-behera │ │ └── anagram.cpp │ ├── Aniket_Tripathy │ │ ├── ANAGRAMS.cpp │ │ ├── PRODUCT_FINDER.cpp │ │ └── README.md │ ├── Ashutosh_Panda │ │ ├── Readme.md │ │ ├── SoErato.cpp │ │ └── spiral.cpp │ ├── BHAGYAJIT PINGUA │ │ ├── ANAGRAMS.cpp │ │ ├── PATTERN_FINDER.cpp │ │ └── README.md │ ├── Binay_Sahu │ │ ├── ANAGRAMS.cpp │ │ ├── MAXIMUM_SUM.cpp │ │ └── README.md │ ├── Kumar_Santosh │ │ ├── MAXIMUM_SUM.cpp │ │ ├── README.md │ │ └── SORT_01-KS.cpp │ ├── Liza_Patra │ │ ├── 2D_ARRAY.cpp │ │ ├── Pattern_Finder.cpp │ │ ├── README.md │ │ ├── Roman_to_decimal.cpp │ │ └── Sort_array.cpp │ ├── Nitin_Mishra │ │ ├── ANAGRAM.cpp │ │ ├── PROFICIENT_TRADER.cpp │ │ ├── README.md │ │ └── ROMAN_TO_DECIMAL.cpp │ ├── Prateek_Rath │ │ ├── MAJORITY_ELEMENT.cpp │ │ ├── README.md │ │ └── SORT_01.cpp │ ├── SURAJ_SHARMA │ │ ├── Allocate_minimum_number_of_pages.cpp │ │ ├── Clone_a_LL.cpp │ │ ├── Count_inversions.cpp │ │ └── README.md │ ├── SURAJ_SHARMA_COMMIT_2 │ │ ├── Remove_Loop_LL.cpp │ │ ├── TRAPPING_RAIN_WATER.cpp │ │ └── readme.txt │ ├── SURAJ_SHARMA_COMMIT_3 │ │ ├── FIND_ALL_FOUR_SUM_NUMBERS.cpp │ │ ├── README.txt │ │ └── SPIRALLY_TRAVERSING_a_matrix.cpp │ ├── SURAJ_SHARMA_COMMIT_4 │ │ ├── K-th_Element_of_TWO_SORTED_ARRAYS.cpp │ │ ├── Majority_Element.cpp │ │ └── README.txt │ ├── SURAJ_SHARMA_COMMIT_5 │ │ ├── CIRCULAR_TOUR.cpp │ │ ├── README.txt │ │ └── THE_CELEBRITY_PROBLEM.cpp │ ├── Sunita_Bal 1 │ │ ├── Max_rectangle.cpp │ │ ├── README.txt │ │ └── The_Painter's_Partition_Problem-II.cpp │ ├── Sunita_bal_3 │ │ ├── Allocate_minimum_number_of_pages.cpp │ │ ├── README.txt │ │ └── Trapping_Rain_Water.cpp │ ├── Sunita_bal_4 │ │ ├── Clone_a_linked_list_with_next_and_random_pointer.cpp │ │ ├── README.txt │ │ └── Spirally_traversing_a_matrix.cpp │ ├── Sunita_bal_cp4 │ │ ├── Clone_a_linked_list_with_next_and_random_pointer.cpp │ │ ├── Kadane_algo.cpp │ │ ├── README.txt │ │ └── Spirally_traversing_a_matrix.cpp │ ├── TANIKA_GULATI │ │ ├── MAJORITY_ELEMENT.cpp │ │ ├── MAJORITY_ELEMENT.exe │ │ ├── README.md │ │ ├── ROMAN_TO_DECIMAL.cpp │ │ ├── ROMAN_TO_DECIMAL.exe │ │ ├── SORT_01.cpp │ │ └── SORT_01.exe │ ├── example.cpp │ ├── root_user │ │ └── PRODUCT_FINDER.cpp │ ├── sahild_kun │ │ ├── MAJORITY_ELEMENT.cpp │ │ ├── PROFICIENT_TRADER.cpp │ │ └── README.md │ └── sunita_bal_2 │ │ ├── README.txt │ │ ├── Rat_in_a_Maze_Problem - I.cpp │ │ └── The_Celebrity_Problem.cpp ├── C │ ├── Swayam │ │ ├── anagram.md │ │ └── anagrams.c │ ├── dfs_prajwal-behera │ │ └── dfs.c │ ├── djisktra_prajwal-behera │ │ └── djisktra.c │ ├── example_code.c │ ├── floyd warshall_prajwal-behera │ │ └── floyd warshall.c │ ├── floydWarshall_Prajwal-Behera │ │ └── floyd_warshall.c │ ├── heapsort_prajwal-behera │ │ └── heapsort.c │ └── heySwayam │ │ ├── README.md │ │ ├── anagram.md │ │ ├── anagrams.c │ │ ├── majority_element.c │ │ ├── majority_element.md │ │ ├── pattern_finder.c │ │ ├── pattern_finder.md │ │ └── sort_1.c ├── JAVA │ ├── ABUZANAZAD │ │ ├── README.md │ │ ├── ROMAN_TO_DECIMAL.java │ │ └── SORT_01.java │ ├── QWERTY │ │ └── ROMAN_TO_DECIMAL.java │ ├── Soumya │ │ └── ANAGRAMS.java │ ├── Soumyaranjan │ │ ├── ANAGRAMS.java │ │ ├── MAJORITY_ELEMENT.java │ │ └── readme.md │ └── example_code.java ├── PYTHON │ ├── JYOTISHREE_BEHERA │ │ ├── MAJORITY_ELEMENT.py │ │ └── README.md │ ├── KALINGA_KHATUA │ │ ├── PROFICIENT_TRADER.py │ │ └── README.md │ ├── QWERTY │ │ └── 2D_ARRAY_SUM.PY │ ├── VINWARE │ │ ├── ANAGRAMS.py │ │ └── README.md │ ├── example_code.py │ └── root_user │ │ ├── PRODUCT_FINDER.cpp │ │ └── ROMAN_TO_DECIMAL.cpp ├── README.md └── projects_Advanced │ ├── AI_ML │ └── README.md │ ├── APP_DEVELOPMENT │ └── README.md │ ├── HARDWARE_DEVELOPMENT │ └── README.md │ ├── PYTHON_DEVELOPMENT │ └── README.md │ ├── Project_Domain.md │ ├── README.md │ └── WEB_DEVELOPMENT │ └── README.md ├── projects_Advanced ├── AI_ML │ └── README.md ├── APP_DEVELOPMENT │ └── README.md ├── HARDWARE_DEVELOPMENT │ └── README.md ├── PYTHON_DEVELOPMENT │ └── sendSupplies_Jeevan-Alok │ │ ├── README.md │ │ ├── assets │ │ ├── PNG │ │ │ ├── backgrounds │ │ │ │ ├── 000.png │ │ │ │ ├── War.png │ │ │ │ ├── War2.png │ │ │ │ └── War3.png │ │ │ ├── bg1.png │ │ │ ├── bg2.png │ │ │ ├── bg3.png │ │ │ └── score-bg.png │ │ ├── bgmusic.wav │ │ ├── drops │ │ │ ├── boom.png │ │ │ ├── food.png │ │ │ └── medkit.png │ │ ├── note.txt │ │ ├── planes │ │ │ ├── pl1.png │ │ │ ├── pl2.png │ │ │ ├── pl3.png │ │ │ └── pl4.png │ │ └── soldier-sprites │ │ │ ├── dying.png │ │ │ ├── running1.png │ │ │ ├── running2.png │ │ │ ├── running3.png │ │ │ ├── running4.png │ │ │ ├── running5.png │ │ │ ├── running6.png │ │ │ └── standing.png │ │ ├── game.py │ │ └── requirements.txt ├── Project_Domain.md ├── README.md └── WEB_DEVELOPMENT │ └── README.md └── projects_Intermediate ├── AI_ML ├── README.md ├── SentimentAnalysisOfCommodityNews │ ├── Model │ │ └── Sentiment_Analysis_of_Commodity_News.ipynb │ ├── README.md │ ├── best_model.h5 │ ├── model.png │ ├── requirements.txt │ └── tokenizer.pickle └── SpaceshipTitanic_Rohan-Mohanty │ ├── .ipynb_checkpoints │ └── Space_Titanic_Predictions-checkpoint.ipynb │ ├── Answers.csv │ ├── README.md │ ├── Space_Titanic_Predictions.ipynb │ ├── sample_submission.csv │ ├── test.csv │ └── train.csv ├── APP_DEVELOPMENT ├── CalculatorApp_Nitin-Mishra │ ├── .gitignore │ ├── .metadata │ ├── README.md │ ├── S1.jpg │ ├── S2.jpg │ ├── S3.jpg │ ├── S4.jpg │ ├── analysis_options.yaml │ ├── android │ │ ├── .gitignore │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── calc_app │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── launch_background.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ │ ├── values-night │ │ │ │ │ └── styles.xml │ │ │ │ │ └── values │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── assets │ │ ├── calculator.png │ │ └── fonts │ │ │ ├── Avenir-Medium.ttf │ │ │ ├── Nunito-Regular.ttf │ │ │ └── Oswald-Regular.ttf │ ├── ios │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── Icon-App-1024x1024@1x.png │ │ │ │ ├── Icon-App-20x20@1x.png │ │ │ │ ├── Icon-App-20x20@2x.png │ │ │ │ ├── Icon-App-20x20@3x.png │ │ │ │ ├── Icon-App-29x29@1x.png │ │ │ │ ├── Icon-App-29x29@2x.png │ │ │ │ ├── Icon-App-29x29@3x.png │ │ │ │ ├── Icon-App-40x40@1x.png │ │ │ │ ├── Icon-App-40x40@2x.png │ │ │ │ ├── Icon-App-40x40@3x.png │ │ │ │ ├── Icon-App-60x60@2x.png │ │ │ │ ├── Icon-App-60x60@3x.png │ │ │ │ ├── Icon-App-76x76@1x.png │ │ │ │ ├── Icon-App-76x76@2x.png │ │ │ │ └── Icon-App-83.5x83.5@2x.png │ │ │ └── LaunchImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchImage.png │ │ │ │ ├── LaunchImage@2x.png │ │ │ │ ├── LaunchImage@3x.png │ │ │ │ └── README.md │ │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ └── Runner-Bridging-Header.h │ ├── lib │ │ ├── button.dart │ │ ├── calculator.dart │ │ ├── display.dart │ │ ├── format.dart │ │ ├── history.dart │ │ ├── layout.dart │ │ ├── main.dart │ │ └── rows.dart │ ├── linux │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ │ ├── CMakeLists.txt │ │ │ ├── generated_plugin_registrant.cc │ │ │ ├── generated_plugin_registrant.h │ │ │ └── generated_plugins.cmake │ │ ├── main.cc │ │ ├── my_application.cc │ │ └── my_application.h │ ├── macos │ │ ├── .gitignore │ │ ├── Flutter │ │ │ ├── Flutter-Debug.xcconfig │ │ │ ├── Flutter-Release.xcconfig │ │ │ └── GeneratedPluginRegistrant.swift │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── Runner │ │ │ ├── AppDelegate.swift │ │ │ ├── Assets.xcassets │ │ │ └── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── app_icon_1024.png │ │ │ │ ├── app_icon_128.png │ │ │ │ ├── app_icon_16.png │ │ │ │ ├── app_icon_256.png │ │ │ │ ├── app_icon_32.png │ │ │ │ ├── app_icon_512.png │ │ │ │ └── app_icon_64.png │ │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ │ ├── Configs │ │ │ ├── AppInfo.xcconfig │ │ │ ├── Debug.xcconfig │ │ │ ├── Release.xcconfig │ │ │ └── Warnings.xcconfig │ │ │ ├── DebugProfile.entitlements │ │ │ ├── Info.plist │ │ │ ├── MainFlutterWindow.swift │ │ │ └── Release.entitlements │ ├── pubspec.lock │ ├── pubspec.yaml │ ├── test │ │ └── widget_test.dart │ ├── web │ │ ├── favicon.png │ │ ├── icons │ │ │ ├── Icon-192.png │ │ │ ├── Icon-512.png │ │ │ ├── Icon-maskable-192.png │ │ │ └── Icon-maskable-512.png │ │ ├── index.html │ │ └── manifest.json │ └── windows │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── flutter │ │ ├── CMakeLists.txt │ │ ├── generated_plugin_registrant.cc │ │ ├── generated_plugin_registrant.h │ │ └── generated_plugins.cmake │ │ └── runner │ │ ├── CMakeLists.txt │ │ ├── Runner.rc │ │ ├── flutter_window.cpp │ │ ├── flutter_window.h │ │ ├── main.cpp │ │ ├── resource.h │ │ ├── resources │ │ └── app_icon.ico │ │ ├── runner.exe.manifest │ │ ├── utils.cpp │ │ ├── utils.h │ │ ├── win32_window.cpp │ │ └── win32_window.h ├── HotelIndia_Debidatta │ ├── .gitignore │ ├── App.js │ ├── README.md │ ├── app.json │ ├── assets │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ └── splash.png │ ├── babel.config.js │ ├── package-lock.json │ ├── package.json │ └── src │ │ ├── assets │ │ ├── facility1.png │ │ ├── facility2.png │ │ ├── facility3.png │ │ ├── facility4.png │ │ └── hotel1.jpg │ │ ├── consts │ │ ├── colors.js │ │ ├── facilities.js │ │ └── hotel.js │ │ └── views │ │ └── screens │ │ ├── DetailsScreen.js │ │ ├── HomeScreen.js │ │ └── NftDetailsScreen.js ├── README.md └── tic_toe_game_Arpit-Verma │ ├── 1.jpeg │ ├── 3.jpeg │ ├── 4.jpeg │ ├── README.md │ ├── main.dart │ └── pubspec.yaml ├── HARDWARE_DEVELOPMENT └── README.md ├── PYTHON_DEVELOPMENT ├── BMI_calculator_subhasish-pattanaik │ ├── .idea │ │ ├── .gitignore │ │ ├── BMIcalculator.iml │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ └── modules.xml │ ├── README.md │ └── main.py ├── ChatApp_Siddhartha-Shankar-Padhy │ ├── README.md │ ├── chatServer.py │ └── main.py ├── GUI_Calculator_Ashutosh_Panda │ ├── README.md │ └── calculator.py ├── PingPong_SoumyaSuman │ ├── README.md │ └── main.py ├── QuizIt-Sai-Soumyak-Nanda │ ├── .gitignore │ ├── main.py │ ├── readMe.md │ ├── student_leaderboard.sql │ ├── teacher_login.sql │ ├── teacher_questions.sql │ └── video.mp4 ├── README.md ├── RockPaperScissors_Kalinga-Khatua │ ├── Readme.md │ └── rpsGame.py ├── Rock_paper_scissor_lizard_spock_Prateek-Rath │ ├── README.md │ ├── img │ │ ├── computer-png-hd-45246.png │ │ ├── lizard.png │ │ ├── paper.png │ │ ├── player.png │ │ ├── scissors.png │ │ └── spock.png │ └── main.py ├── Rock_paper_scissors_subhasish-pattanaik │ ├── .idea │ │ ├── .gitignore │ │ ├── inspectionProfiles │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── pythonProjectrock,paperand scissorpart2.iml │ ├── README.md │ └── main.py ├── Tetris_SoumyaSuman │ ├── README.md │ └── tetris.py ├── Typing_Speed_Calculator-Kumar_Santosh │ ├── Readme.md │ └── typing_speed.py ├── UltimatePdfMaker_Sattwik-Palai │ ├── Readme.md │ └── The_ultimate_pdf_maker.py ├── snakes_and_ladder_subhasish-pattanaik │ ├── .idea │ │ ├── .gitignore │ │ ├── inspectionProfiles │ │ │ ├── Project_Default.xml │ │ │ └── profiles_settings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── snakes&ladder.iml │ ├── README.md │ └── main.py └── whatsapp_chat_analyzer_pratyush-giri │ ├── README.md │ ├── app.py │ ├── helper.py │ └── preprocessor.py ├── Project_Domain.md ├── README.md └── WEB_DEVELOPEMENT ├── BookshelfApp_Argya-Wicaksana ├── README.md ├── index.html ├── main.js └── style.css ├── Calculator_SoumyaSuman ├── README.md ├── index.html ├── logic.js └── style.css ├── Cryptoverse_Prateek-Rath ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── app │ └── store.js │ ├── components │ ├── CryptoDetails.jsx │ ├── Cryptocurrencies.jsx │ ├── Exchanges.jsx │ ├── Footer.jsx │ ├── Homepage.jsx │ ├── LineChart.jsx │ ├── Loader.jsx │ ├── Navbar.jsx │ ├── News.jsx │ └── index.js │ ├── images │ ├── brilliantlogo.png │ └── cryptocurrency.png │ ├── index.js │ └── services │ ├── cryptoAPI.js │ └── cryptoNewsApi.js ├── DemoPortfolio_SoumyaSuman ├── README.md ├── about-img.png ├── bg.png ├── bg2.png ├── index.html ├── model.png ├── query.js ├── services-1.png ├── services-2.png ├── servies-3.png └── style.css ├── Fitbtytes_Prateek-Rath ├── .gitignore ├── README.md ├── display │ ├── fss1.png │ ├── fss2.png │ ├── fss3.png │ └── fss4.png ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── assets │ ├── icons │ │ ├── body-part.png │ │ ├── equipment.png │ │ ├── gym.png │ │ ├── left-arrow.png │ │ ├── right-arrow.png │ │ └── target.png │ └── images │ │ ├── Logo-1.png │ │ ├── Logo.png │ │ ├── banner.png │ │ ├── banner1.jpg │ │ ├── fitbytes1.png │ │ └── fitbytes2.png │ ├── components │ ├── BodyPart.jsx │ ├── Detail.jsx │ ├── ExerciseCard.jsx │ ├── ExerciseVideos.jsx │ ├── Exercises.jsx │ ├── Footer.jsx │ ├── HeroBanner.jsx │ ├── HorizontalScrollbar.jsx │ ├── Loader.jsx │ ├── Navbar.jsx │ ├── SearchExercises.jsx │ └── SimilarExercises.jsx │ ├── index.js │ ├── pages │ ├── ExerciseDetail.jsx │ └── Home.jsx │ └── utils │ └── fetchData.js ├── InfiniteScroll_Sai-Soumyak-Nanda ├── README.md ├── index.css ├── index.html ├── index.js └── loader.svg ├── MorseTranslator_Jeevan-Alok ├── README.md ├── app.js ├── index.html └── style.css ├── Moviepedia_Pallavi-Mahapatra ├── README.md ├── bootstrap.css ├── index.html ├── movie.js └── style2.css ├── PROFILE-CARD_PALLAVI-MAHAPATRA ├── README.md ├── bootstrap.css ├── index.html ├── profile.js └── style.css ├── PigGame_Adarsh_Murmu ├── README.md ├── img │ ├── dice-1.png │ ├── dice-2.png │ ├── dice-3.png │ ├── dice-4.png │ ├── dice-5.png │ └── dice-6.png ├── index.html ├── script.js └── style.css ├── PokeCatch_Jeevan-Alok ├── .gitignore ├── .vscode │ └── settings.json ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── manifest.json │ └── robots.txt └── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Components │ ├── Card.jsx │ └── Generate.jsx │ ├── images │ ├── battle.png │ ├── colorswd.png │ ├── hospital.png │ ├── life.png │ ├── pokeball.svg │ ├── shield.png │ ├── shield1.png │ ├── speed.png │ └── swords.png │ ├── index.css │ ├── index.js │ ├── reportWebVitals.js │ └── setupTests.js ├── PrimeFactorCalc_Jeevan-Alok ├── README.md ├── index.html ├── script.js └── style.css ├── README.md ├── Tic-tac-toe_Pallavi-Mahapatra ├── README.md ├── index.html ├── script.js └── styles.css ├── ToDoList_SoumyaSuman ├── README.md ├── index.html ├── logic.js └── style.css ├── TodoApp_Prasannajeet-Pradhan ├── README.md ├── index.html ├── script.js └── style.css ├── Weatherapp_sahildkun ├── README.md ├── index.html ├── script.js └── style.css ├── budget-Tracker_Pallavi-Mahapatra ├── README.md ├── index.html ├── index.js └── style.css ├── calculator_Aditya-Aswajeet-Nayak ├── README.md ├── index.html ├── index.js └── style.css ├── countdown_Prasannajeet-Pradhan ├── README.md ├── cristina-gottardi-CSpjU6hYo_0-unsplash.jpg ├── index.html ├── script.js └── style.css ├── deadjokes_Prasannajeet-Pradhan ├── README.md ├── index.html ├── script.js └── style.css ├── digitalClock_Aditya-Aswajeet-Nayak ├── README.md ├── index.html ├── index.js └── style.css ├── memegenerator_sahildkun ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── Data.js │ ├── Meme.js │ ├── Navbar.js │ ├── images │ │ ├── 4854c2cd8f0e69be5d0dd124662654f2.jpg │ │ └── Troll Face (1).png │ ├── index.css │ ├── index.js │ ├── reportWebVitals.js │ └── setupTests.js └── tailwind.config.js ├── portfolio_Aditya-Aswajeet-Nayak ├── 11.jpg ├── 121.jpg ├── 123.png ├── README.md ├── blog-1.jpg ├── blog-2.jpg ├── blog-3.jpg ├── blog-4.jpg ├── blog-5.jpg ├── blog-6.jpg ├── blog-7.jpg ├── css │ └── style.css ├── image │ ├── about-img.png │ ├── banner-1.png │ ├── banner-2.png │ ├── banner-3.png │ ├── blog-1.jpg │ ├── blog-2.jpg │ ├── blog-3.jpg │ ├── cat-1.png │ ├── cat-2.png │ ├── cat-3.png │ ├── cat-4.png │ ├── cat-5.png │ ├── cat-6.png │ ├── food-1.png │ ├── food-2.png │ ├── food-3.png │ ├── food-4.png │ ├── food-5.png │ ├── food-6.png │ ├── food-7.png │ ├── food-8.png │ ├── home-img.png │ ├── home-img1.png │ ├── home-parallax-img.png │ ├── home-parallax-img1.png │ ├── home-parallax-img2.png │ ├── home-parallax-img3.png │ ├── home-parallax-img4.png │ ├── icon-1.png │ ├── icon-2.png │ ├── icon-3.png │ ├── menu-1.png │ ├── menu-2.png │ ├── menu-3.png │ ├── menu-4.png │ ├── menu-5.png │ ├── menu-6.png │ ├── row-banner.png │ ├── serv-1.png │ ├── serv-2.png │ ├── serv-3.png │ └── serv-4.png ├── index.html ├── js │ └── script.js └── profile.jpg ├── simpleCalculator_Prasannajeet-Pradhan ├── README.md ├── index.html ├── script.js └── style.css ├── socialMediaMenu-Aditya-Aswajeet-Nayak ├── README.md ├── index.html ├── index.js └── style.css └── todo_Prasannajeet-Pradhan ├── README.md ├── index.html ├── script.js └── style.css /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/.github/ISSUE_TEMPLATE/issue-report.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/CONTRIBUTION.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/README.md -------------------------------------------------------------------------------- /coding_freshmen/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "C_Cpp.errorSquiggles": "Disabled" 3 | } -------------------------------------------------------------------------------- /coding_freshmen/C++/ALOK_RANJAN_JOSHI/ANAGRAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/ALOK_RANJAN_JOSHI/ANAGRAM.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/ALOK_RANJAN_JOSHI/MAXIMUM_SUM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/ALOK_RANJAN_JOSHI/MAXIMUM_SUM.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/ALOK_RANJAN_JOSHI/PATTERN_FINDER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/ALOK_RANJAN_JOSHI/PATTERN_FINDER.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/ALOK_RANJAN_JOSHI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/ALOK_RANJAN_JOSHI/README.md -------------------------------------------------------------------------------- /coding_freshmen/C++/ALOK_RANJAN_JOSHI/ROMAN_TO_INTEGER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/ALOK_RANJAN_JOSHI/ROMAN_TO_INTEGER.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Anagram_prajwal-behera/anagram.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coding_freshmen/C++/Aniket_Tripathy/ANAGRAMS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Aniket_Tripathy/ANAGRAMS.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Aniket_Tripathy/PRODUCT_FINDER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Aniket_Tripathy/PRODUCT_FINDER.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Aniket_Tripathy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Aniket_Tripathy/README.md -------------------------------------------------------------------------------- /coding_freshmen/C++/Ashutosh_Panda/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Ashutosh_Panda/Readme.md -------------------------------------------------------------------------------- /coding_freshmen/C++/Ashutosh_Panda/SoErato.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Ashutosh_Panda/SoErato.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Ashutosh_Panda/spiral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Ashutosh_Panda/spiral.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/BHAGYAJIT PINGUA/ANAGRAMS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/BHAGYAJIT PINGUA/ANAGRAMS.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/BHAGYAJIT PINGUA/PATTERN_FINDER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/BHAGYAJIT PINGUA/PATTERN_FINDER.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/BHAGYAJIT PINGUA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/BHAGYAJIT PINGUA/README.md -------------------------------------------------------------------------------- /coding_freshmen/C++/Binay_Sahu/ANAGRAMS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Binay_Sahu/ANAGRAMS.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Binay_Sahu/MAXIMUM_SUM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Binay_Sahu/MAXIMUM_SUM.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Binay_Sahu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Binay_Sahu/README.md -------------------------------------------------------------------------------- /coding_freshmen/C++/Kumar_Santosh/MAXIMUM_SUM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Kumar_Santosh/MAXIMUM_SUM.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Kumar_Santosh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Kumar_Santosh/README.md -------------------------------------------------------------------------------- /coding_freshmen/C++/Kumar_Santosh/SORT_01-KS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Kumar_Santosh/SORT_01-KS.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Liza_Patra/2D_ARRAY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Liza_Patra/2D_ARRAY.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Liza_Patra/Pattern_Finder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Liza_Patra/Pattern_Finder.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Liza_Patra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Liza_Patra/README.md -------------------------------------------------------------------------------- /coding_freshmen/C++/Liza_Patra/Roman_to_decimal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Liza_Patra/Roman_to_decimal.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Liza_Patra/Sort_array.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Liza_Patra/Sort_array.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Nitin_Mishra/ANAGRAM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Nitin_Mishra/ANAGRAM.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Nitin_Mishra/PROFICIENT_TRADER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Nitin_Mishra/PROFICIENT_TRADER.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Nitin_Mishra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Nitin_Mishra/README.md -------------------------------------------------------------------------------- /coding_freshmen/C++/Nitin_Mishra/ROMAN_TO_DECIMAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Nitin_Mishra/ROMAN_TO_DECIMAL.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Prateek_Rath/MAJORITY_ELEMENT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Prateek_Rath/MAJORITY_ELEMENT.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Prateek_Rath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Prateek_Rath/README.md -------------------------------------------------------------------------------- /coding_freshmen/C++/Prateek_Rath/SORT_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Prateek_Rath/SORT_01.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA/Allocate_minimum_number_of_pages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA/Allocate_minimum_number_of_pages.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA/Clone_a_LL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA/Clone_a_LL.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA/Count_inversions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA/Count_inversions.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA/README.md -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA_COMMIT_2/Remove_Loop_LL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA_COMMIT_2/Remove_Loop_LL.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA_COMMIT_2/TRAPPING_RAIN_WATER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA_COMMIT_2/TRAPPING_RAIN_WATER.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA_COMMIT_2/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA_COMMIT_2/readme.txt -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA_COMMIT_3/FIND_ALL_FOUR_SUM_NUMBERS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA_COMMIT_3/FIND_ALL_FOUR_SUM_NUMBERS.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA_COMMIT_3/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA_COMMIT_3/README.txt -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA_COMMIT_3/SPIRALLY_TRAVERSING_a_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA_COMMIT_3/SPIRALLY_TRAVERSING_a_matrix.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA_COMMIT_4/K-th_Element_of_TWO_SORTED_ARRAYS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA_COMMIT_4/K-th_Element_of_TWO_SORTED_ARRAYS.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA_COMMIT_4/Majority_Element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA_COMMIT_4/Majority_Element.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA_COMMIT_4/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA_COMMIT_4/README.txt -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA_COMMIT_5/CIRCULAR_TOUR.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA_COMMIT_5/CIRCULAR_TOUR.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA_COMMIT_5/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA_COMMIT_5/README.txt -------------------------------------------------------------------------------- /coding_freshmen/C++/SURAJ_SHARMA_COMMIT_5/THE_CELEBRITY_PROBLEM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/SURAJ_SHARMA_COMMIT_5/THE_CELEBRITY_PROBLEM.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Sunita_Bal 1/Max_rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Sunita_Bal 1/Max_rectangle.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Sunita_Bal 1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Sunita_Bal 1/README.txt -------------------------------------------------------------------------------- /coding_freshmen/C++/Sunita_Bal 1/The_Painter's_Partition_Problem-II.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Sunita_Bal 1/The_Painter's_Partition_Problem-II.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Sunita_bal_3/Allocate_minimum_number_of_pages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Sunita_bal_3/Allocate_minimum_number_of_pages.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Sunita_bal_3/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Sunita_bal_3/README.txt -------------------------------------------------------------------------------- /coding_freshmen/C++/Sunita_bal_3/Trapping_Rain_Water.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Sunita_bal_3/Trapping_Rain_Water.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Sunita_bal_4/Clone_a_linked_list_with_next_and_random_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Sunita_bal_4/Clone_a_linked_list_with_next_and_random_pointer.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Sunita_bal_4/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Sunita_bal_4/README.txt -------------------------------------------------------------------------------- /coding_freshmen/C++/Sunita_bal_4/Spirally_traversing_a_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Sunita_bal_4/Spirally_traversing_a_matrix.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Sunita_bal_cp4/Clone_a_linked_list_with_next_and_random_pointer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Sunita_bal_cp4/Clone_a_linked_list_with_next_and_random_pointer.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Sunita_bal_cp4/Kadane_algo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Sunita_bal_cp4/Kadane_algo.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/Sunita_bal_cp4/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Sunita_bal_cp4/README.txt -------------------------------------------------------------------------------- /coding_freshmen/C++/Sunita_bal_cp4/Spirally_traversing_a_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/Sunita_bal_cp4/Spirally_traversing_a_matrix.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/TANIKA_GULATI/MAJORITY_ELEMENT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/TANIKA_GULATI/MAJORITY_ELEMENT.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/TANIKA_GULATI/MAJORITY_ELEMENT.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/TANIKA_GULATI/MAJORITY_ELEMENT.exe -------------------------------------------------------------------------------- /coding_freshmen/C++/TANIKA_GULATI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/TANIKA_GULATI/README.md -------------------------------------------------------------------------------- /coding_freshmen/C++/TANIKA_GULATI/ROMAN_TO_DECIMAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/TANIKA_GULATI/ROMAN_TO_DECIMAL.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/TANIKA_GULATI/ROMAN_TO_DECIMAL.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/TANIKA_GULATI/ROMAN_TO_DECIMAL.exe -------------------------------------------------------------------------------- /coding_freshmen/C++/TANIKA_GULATI/SORT_01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/TANIKA_GULATI/SORT_01.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/TANIKA_GULATI/SORT_01.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/TANIKA_GULATI/SORT_01.exe -------------------------------------------------------------------------------- /coding_freshmen/C++/example.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /coding_freshmen/C++/root_user/PRODUCT_FINDER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/root_user/PRODUCT_FINDER.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/sahild_kun/MAJORITY_ELEMENT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/sahild_kun/MAJORITY_ELEMENT.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/sahild_kun/PROFICIENT_TRADER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/sahild_kun/PROFICIENT_TRADER.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/sahild_kun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/sahild_kun/README.md -------------------------------------------------------------------------------- /coding_freshmen/C++/sunita_bal_2/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/sunita_bal_2/README.txt -------------------------------------------------------------------------------- /coding_freshmen/C++/sunita_bal_2/Rat_in_a_Maze_Problem - I.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/sunita_bal_2/Rat_in_a_Maze_Problem - I.cpp -------------------------------------------------------------------------------- /coding_freshmen/C++/sunita_bal_2/The_Celebrity_Problem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C++/sunita_bal_2/The_Celebrity_Problem.cpp -------------------------------------------------------------------------------- /coding_freshmen/C/Swayam/anagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C/Swayam/anagram.md -------------------------------------------------------------------------------- /coding_freshmen/C/Swayam/anagrams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C/Swayam/anagrams.c -------------------------------------------------------------------------------- /coding_freshmen/C/dfs_prajwal-behera/dfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C/dfs_prajwal-behera/dfs.c -------------------------------------------------------------------------------- /coding_freshmen/C/djisktra_prajwal-behera/djisktra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C/djisktra_prajwal-behera/djisktra.c -------------------------------------------------------------------------------- /coding_freshmen/C/example_code.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /coding_freshmen/C/floyd warshall_prajwal-behera/floyd warshall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C/floyd warshall_prajwal-behera/floyd warshall.c -------------------------------------------------------------------------------- /coding_freshmen/C/floydWarshall_Prajwal-Behera/floyd_warshall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C/floydWarshall_Prajwal-Behera/floyd_warshall.c -------------------------------------------------------------------------------- /coding_freshmen/C/heapsort_prajwal-behera/heapsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C/heapsort_prajwal-behera/heapsort.c -------------------------------------------------------------------------------- /coding_freshmen/C/heySwayam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C/heySwayam/README.md -------------------------------------------------------------------------------- /coding_freshmen/C/heySwayam/anagram.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C/heySwayam/anagram.md -------------------------------------------------------------------------------- /coding_freshmen/C/heySwayam/anagrams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C/heySwayam/anagrams.c -------------------------------------------------------------------------------- /coding_freshmen/C/heySwayam/majority_element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C/heySwayam/majority_element.c -------------------------------------------------------------------------------- /coding_freshmen/C/heySwayam/majority_element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C/heySwayam/majority_element.md -------------------------------------------------------------------------------- /coding_freshmen/C/heySwayam/pattern_finder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C/heySwayam/pattern_finder.c -------------------------------------------------------------------------------- /coding_freshmen/C/heySwayam/pattern_finder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C/heySwayam/pattern_finder.md -------------------------------------------------------------------------------- /coding_freshmen/C/heySwayam/sort_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/C/heySwayam/sort_1.c -------------------------------------------------------------------------------- /coding_freshmen/JAVA/ABUZANAZAD/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/JAVA/ABUZANAZAD/README.md -------------------------------------------------------------------------------- /coding_freshmen/JAVA/ABUZANAZAD/ROMAN_TO_DECIMAL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/JAVA/ABUZANAZAD/ROMAN_TO_DECIMAL.java -------------------------------------------------------------------------------- /coding_freshmen/JAVA/ABUZANAZAD/SORT_01.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/JAVA/ABUZANAZAD/SORT_01.java -------------------------------------------------------------------------------- /coding_freshmen/JAVA/QWERTY/ROMAN_TO_DECIMAL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/JAVA/QWERTY/ROMAN_TO_DECIMAL.java -------------------------------------------------------------------------------- /coding_freshmen/JAVA/Soumya/ANAGRAMS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/JAVA/Soumya/ANAGRAMS.java -------------------------------------------------------------------------------- /coding_freshmen/JAVA/Soumyaranjan/ANAGRAMS.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/JAVA/Soumyaranjan/ANAGRAMS.java -------------------------------------------------------------------------------- /coding_freshmen/JAVA/Soumyaranjan/MAJORITY_ELEMENT.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/JAVA/Soumyaranjan/MAJORITY_ELEMENT.java -------------------------------------------------------------------------------- /coding_freshmen/JAVA/Soumyaranjan/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/JAVA/Soumyaranjan/readme.md -------------------------------------------------------------------------------- /coding_freshmen/JAVA/example_code.java: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /coding_freshmen/PYTHON/JYOTISHREE_BEHERA/MAJORITY_ELEMENT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/PYTHON/JYOTISHREE_BEHERA/MAJORITY_ELEMENT.py -------------------------------------------------------------------------------- /coding_freshmen/PYTHON/JYOTISHREE_BEHERA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/PYTHON/JYOTISHREE_BEHERA/README.md -------------------------------------------------------------------------------- /coding_freshmen/PYTHON/KALINGA_KHATUA/PROFICIENT_TRADER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/PYTHON/KALINGA_KHATUA/PROFICIENT_TRADER.py -------------------------------------------------------------------------------- /coding_freshmen/PYTHON/KALINGA_KHATUA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/PYTHON/KALINGA_KHATUA/README.md -------------------------------------------------------------------------------- /coding_freshmen/PYTHON/QWERTY/2D_ARRAY_SUM.PY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/PYTHON/QWERTY/2D_ARRAY_SUM.PY -------------------------------------------------------------------------------- /coding_freshmen/PYTHON/VINWARE/ANAGRAMS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/PYTHON/VINWARE/ANAGRAMS.py -------------------------------------------------------------------------------- /coding_freshmen/PYTHON/VINWARE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/PYTHON/VINWARE/README.md -------------------------------------------------------------------------------- /coding_freshmen/PYTHON/example_code.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /coding_freshmen/PYTHON/root_user/PRODUCT_FINDER.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/PYTHON/root_user/PRODUCT_FINDER.cpp -------------------------------------------------------------------------------- /coding_freshmen/PYTHON/root_user/ROMAN_TO_DECIMAL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/PYTHON/root_user/ROMAN_TO_DECIMAL.cpp -------------------------------------------------------------------------------- /coding_freshmen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/README.md -------------------------------------------------------------------------------- /coding_freshmen/projects_Advanced/AI_ML/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /coding_freshmen/projects_Advanced/APP_DEVELOPMENT/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /coding_freshmen/projects_Advanced/HARDWARE_DEVELOPMENT/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /coding_freshmen/projects_Advanced/PYTHON_DEVELOPMENT/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /coding_freshmen/projects_Advanced/Project_Domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/projects_Advanced/Project_Domain.md -------------------------------------------------------------------------------- /coding_freshmen/projects_Advanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/coding_freshmen/projects_Advanced/README.md -------------------------------------------------------------------------------- /coding_freshmen/projects_Advanced/WEB_DEVELOPMENT/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /projects_Advanced/AI_ML/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /projects_Advanced/APP_DEVELOPMENT/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /projects_Advanced/HARDWARE_DEVELOPMENT/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/README.md -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/backgrounds/000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/backgrounds/000.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/backgrounds/War.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/backgrounds/War.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/backgrounds/War2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/backgrounds/War2.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/backgrounds/War3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/backgrounds/War3.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/bg1.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/bg2.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/bg3.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/score-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/PNG/score-bg.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/bgmusic.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/bgmusic.wav -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/drops/boom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/drops/boom.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/drops/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/drops/food.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/drops/medkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/drops/medkit.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/note.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/planes/pl1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/planes/pl1.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/planes/pl2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/planes/pl2.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/planes/pl3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/planes/pl3.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/planes/pl4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/planes/pl4.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/dying.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/dying.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/running1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/running1.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/running2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/running2.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/running3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/running3.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/running4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/running4.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/running5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/running5.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/running6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/running6.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/standing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/assets/soldier-sprites/standing.png -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/game.py -------------------------------------------------------------------------------- /projects_Advanced/PYTHON_DEVELOPMENT/sendSupplies_Jeevan-Alok/requirements.txt: -------------------------------------------------------------------------------- 1 | pygame==2.0.1 2 | -------------------------------------------------------------------------------- /projects_Advanced/Project_Domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/Project_Domain.md -------------------------------------------------------------------------------- /projects_Advanced/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Advanced/README.md -------------------------------------------------------------------------------- /projects_Advanced/WEB_DEVELOPMENT/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /projects_Intermediate/AI_ML/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /projects_Intermediate/AI_ML/SentimentAnalysisOfCommodityNews/Model/Sentiment_Analysis_of_Commodity_News.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/AI_ML/SentimentAnalysisOfCommodityNews/Model/Sentiment_Analysis_of_Commodity_News.ipynb -------------------------------------------------------------------------------- /projects_Intermediate/AI_ML/SentimentAnalysisOfCommodityNews/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/AI_ML/SentimentAnalysisOfCommodityNews/README.md -------------------------------------------------------------------------------- /projects_Intermediate/AI_ML/SentimentAnalysisOfCommodityNews/best_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/AI_ML/SentimentAnalysisOfCommodityNews/best_model.h5 -------------------------------------------------------------------------------- /projects_Intermediate/AI_ML/SentimentAnalysisOfCommodityNews/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/AI_ML/SentimentAnalysisOfCommodityNews/model.png -------------------------------------------------------------------------------- /projects_Intermediate/AI_ML/SentimentAnalysisOfCommodityNews/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/AI_ML/SentimentAnalysisOfCommodityNews/requirements.txt -------------------------------------------------------------------------------- /projects_Intermediate/AI_ML/SentimentAnalysisOfCommodityNews/tokenizer.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/AI_ML/SentimentAnalysisOfCommodityNews/tokenizer.pickle -------------------------------------------------------------------------------- /projects_Intermediate/AI_ML/SpaceshipTitanic_Rohan-Mohanty/.ipynb_checkpoints/Space_Titanic_Predictions-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/AI_ML/SpaceshipTitanic_Rohan-Mohanty/.ipynb_checkpoints/Space_Titanic_Predictions-checkpoint.ipynb -------------------------------------------------------------------------------- /projects_Intermediate/AI_ML/SpaceshipTitanic_Rohan-Mohanty/Answers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/AI_ML/SpaceshipTitanic_Rohan-Mohanty/Answers.csv -------------------------------------------------------------------------------- /projects_Intermediate/AI_ML/SpaceshipTitanic_Rohan-Mohanty/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/AI_ML/SpaceshipTitanic_Rohan-Mohanty/README.md -------------------------------------------------------------------------------- /projects_Intermediate/AI_ML/SpaceshipTitanic_Rohan-Mohanty/Space_Titanic_Predictions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/AI_ML/SpaceshipTitanic_Rohan-Mohanty/Space_Titanic_Predictions.ipynb -------------------------------------------------------------------------------- /projects_Intermediate/AI_ML/SpaceshipTitanic_Rohan-Mohanty/sample_submission.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/AI_ML/SpaceshipTitanic_Rohan-Mohanty/sample_submission.csv -------------------------------------------------------------------------------- /projects_Intermediate/AI_ML/SpaceshipTitanic_Rohan-Mohanty/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/AI_ML/SpaceshipTitanic_Rohan-Mohanty/test.csv -------------------------------------------------------------------------------- /projects_Intermediate/AI_ML/SpaceshipTitanic_Rohan-Mohanty/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/AI_ML/SpaceshipTitanic_Rohan-Mohanty/train.csv -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/.gitignore -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/.metadata -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/README.md -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/S1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/S1.jpg -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/S2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/S2.jpg -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/S3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/S3.jpg -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/S4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/S4.jpg -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/analysis_options.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/analysis_options.yaml -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/.gitignore -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/build.gradle -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/drawable-v21/launch_background.xml -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/drawable/launch_background.xml -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/values-night/styles.xml -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/build.gradle -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/gradle.properties -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/android/settings.gradle -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/assets/calculator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/assets/calculator.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/assets/fonts/Avenir-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/assets/fonts/Avenir-Medium.ttf -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/assets/fonts/Nunito-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/assets/fonts/Nunito-Regular.ttf -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/assets/fonts/Oswald-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/assets/fonts/Oswald-Regular.ttf -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/.gitignore -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner/Info.plist -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/button.dart -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/calculator.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/calculator.dart -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/display.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/display.dart -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/format.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/format.dart -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/history.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/history.dart -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/layout.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/layout.dart -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/main.dart -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/rows.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/lib/rows.dart -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/CMakeLists.txt -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/main.cc -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/my_application.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/my_application.cc -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/my_application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/linux/my_application.h -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/.gitignore -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Flutter/GeneratedPluginRegistrant.swift -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/Configs/AppInfo.xcconfig -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/Configs/Debug.xcconfig -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/Configs/Release.xcconfig -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/Configs/Warnings.xcconfig -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/DebugProfile.entitlements -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/Info.plist -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/MainFlutterWindow.swift -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/macos/Runner/Release.entitlements -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/pubspec.lock -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/pubspec.yaml -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/test/widget_test.dart -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/web/favicon.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/web/icons/Icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/web/icons/Icon-192.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/web/icons/Icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/web/icons/Icon-512.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/web/index.html -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/web/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/web/manifest.json -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/.gitignore -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/CMakeLists.txt -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/flutter/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/flutter/CMakeLists.txt -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/flutter/generated_plugin_registrant.cc -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/flutter/generated_plugin_registrant.h -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/flutter/generated_plugins.cmake -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/CMakeLists.txt -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/Runner.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/Runner.rc -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/flutter_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/flutter_window.cpp -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/flutter_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/flutter_window.h -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/main.cpp -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/resource.h -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/runner.exe.manifest -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/utils.cpp -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/utils.h -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/win32_window.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/win32_window.cpp -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/win32_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/CalculatorApp_Nitin-Mishra/windows/runner/win32_window.h -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/.gitignore -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/App.js -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/README.md -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/app.json -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/assets/adaptive-icon.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/assets/favicon.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/assets/icon.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/assets/splash.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/babel.config.js -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/package-lock.json -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/package.json -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/assets/facility1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/assets/facility1.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/assets/facility2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/assets/facility2.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/assets/facility3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/assets/facility3.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/assets/facility4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/assets/facility4.png -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/assets/hotel1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/assets/hotel1.jpg -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/consts/colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/consts/colors.js -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/consts/facilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/consts/facilities.js -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/consts/hotel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/consts/hotel.js -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/views/screens/DetailsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/views/screens/DetailsScreen.js -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/views/screens/HomeScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/views/screens/HomeScreen.js -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/views/screens/NftDetailsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/HotelIndia_Debidatta/src/views/screens/NftDetailsScreen.js -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/tic_toe_game_Arpit-Verma/1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/tic_toe_game_Arpit-Verma/1.jpeg -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/tic_toe_game_Arpit-Verma/3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/tic_toe_game_Arpit-Verma/3.jpeg -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/tic_toe_game_Arpit-Verma/4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/tic_toe_game_Arpit-Verma/4.jpeg -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/tic_toe_game_Arpit-Verma/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/tic_toe_game_Arpit-Verma/README.md -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/tic_toe_game_Arpit-Verma/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/tic_toe_game_Arpit-Verma/main.dart -------------------------------------------------------------------------------- /projects_Intermediate/APP_DEVELOPMENT/tic_toe_game_Arpit-Verma/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/APP_DEVELOPMENT/tic_toe_game_Arpit-Verma/pubspec.yaml -------------------------------------------------------------------------------- /projects_Intermediate/HARDWARE_DEVELOPMENT/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/BMI_calculator_subhasish-pattanaik/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/BMI_calculator_subhasish-pattanaik/.idea/BMIcalculator.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/BMI_calculator_subhasish-pattanaik/.idea/BMIcalculator.iml -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/BMI_calculator_subhasish-pattanaik/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/BMI_calculator_subhasish-pattanaik/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/BMI_calculator_subhasish-pattanaik/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/BMI_calculator_subhasish-pattanaik/.idea/misc.xml -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/BMI_calculator_subhasish-pattanaik/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/BMI_calculator_subhasish-pattanaik/.idea/modules.xml -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/BMI_calculator_subhasish-pattanaik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/BMI_calculator_subhasish-pattanaik/README.md -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/BMI_calculator_subhasish-pattanaik/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/BMI_calculator_subhasish-pattanaik/main.py -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/ChatApp_Siddhartha-Shankar-Padhy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/ChatApp_Siddhartha-Shankar-Padhy/README.md -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/ChatApp_Siddhartha-Shankar-Padhy/chatServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/ChatApp_Siddhartha-Shankar-Padhy/chatServer.py -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/ChatApp_Siddhartha-Shankar-Padhy/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/ChatApp_Siddhartha-Shankar-Padhy/main.py -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/GUI_Calculator_Ashutosh_Panda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/GUI_Calculator_Ashutosh_Panda/README.md -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/GUI_Calculator_Ashutosh_Panda/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/GUI_Calculator_Ashutosh_Panda/calculator.py -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/PingPong_SoumyaSuman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/PingPong_SoumyaSuman/README.md -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/PingPong_SoumyaSuman/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/PingPong_SoumyaSuman/main.py -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/QuizIt-Sai-Soumyak-Nanda/.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | venv/ -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/QuizIt-Sai-Soumyak-Nanda/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/QuizIt-Sai-Soumyak-Nanda/main.py -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/QuizIt-Sai-Soumyak-Nanda/readMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/QuizIt-Sai-Soumyak-Nanda/readMe.md -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/QuizIt-Sai-Soumyak-Nanda/student_leaderboard.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/QuizIt-Sai-Soumyak-Nanda/student_leaderboard.sql -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/QuizIt-Sai-Soumyak-Nanda/teacher_login.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/QuizIt-Sai-Soumyak-Nanda/teacher_login.sql -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/QuizIt-Sai-Soumyak-Nanda/teacher_questions.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/QuizIt-Sai-Soumyak-Nanda/teacher_questions.sql -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/QuizIt-Sai-Soumyak-Nanda/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/QuizIt-Sai-Soumyak-Nanda/video.mp4 -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/RockPaperScissors_Kalinga-Khatua/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/RockPaperScissors_Kalinga-Khatua/Readme.md -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/RockPaperScissors_Kalinga-Khatua/rpsGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/RockPaperScissors_Kalinga-Khatua/rpsGame.py -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/README.md -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/img/computer-png-hd-45246.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/img/computer-png-hd-45246.png -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/img/lizard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/img/lizard.png -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/img/paper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/img/paper.png -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/img/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/img/player.png -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/img/scissors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/img/scissors.png -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/img/spock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/img/spock.png -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissor_lizard_spock_Prateek-Rath/main.py -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissors_subhasish-pattanaik/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissors_subhasish-pattanaik/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissors_subhasish-pattanaik/.idea/misc.xml -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissors_subhasish-pattanaik/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissors_subhasish-pattanaik/.idea/modules.xml -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissors_subhasish-pattanaik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissors_subhasish-pattanaik/README.md -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissors_subhasish-pattanaik/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Rock_paper_scissors_subhasish-pattanaik/main.py -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Tetris_SoumyaSuman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Tetris_SoumyaSuman/README.md -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Tetris_SoumyaSuman/tetris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Tetris_SoumyaSuman/tetris.py -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Typing_Speed_Calculator-Kumar_Santosh/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Typing_Speed_Calculator-Kumar_Santosh/Readme.md -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/Typing_Speed_Calculator-Kumar_Santosh/typing_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/Typing_Speed_Calculator-Kumar_Santosh/typing_speed.py -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/UltimatePdfMaker_Sattwik-Palai/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/UltimatePdfMaker_Sattwik-Palai/Readme.md -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/UltimatePdfMaker_Sattwik-Palai/The_ultimate_pdf_maker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/UltimatePdfMaker_Sattwik-Palai/The_ultimate_pdf_maker.py -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/snakes_and_ladder_subhasish-pattanaik/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/snakes_and_ladder_subhasish-pattanaik/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/snakes_and_ladder_subhasish-pattanaik/.idea/misc.xml -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/snakes_and_ladder_subhasish-pattanaik/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/snakes_and_ladder_subhasish-pattanaik/.idea/modules.xml -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/snakes_and_ladder_subhasish-pattanaik/.idea/snakes&ladder.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/snakes_and_ladder_subhasish-pattanaik/.idea/snakes&ladder.iml -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/snakes_and_ladder_subhasish-pattanaik/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/snakes_and_ladder_subhasish-pattanaik/README.md -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/snakes_and_ladder_subhasish-pattanaik/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/snakes_and_ladder_subhasish-pattanaik/main.py -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/whatsapp_chat_analyzer_pratyush-giri/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/whatsapp_chat_analyzer_pratyush-giri/README.md -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/whatsapp_chat_analyzer_pratyush-giri/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/whatsapp_chat_analyzer_pratyush-giri/app.py -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/whatsapp_chat_analyzer_pratyush-giri/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/whatsapp_chat_analyzer_pratyush-giri/helper.py -------------------------------------------------------------------------------- /projects_Intermediate/PYTHON_DEVELOPMENT/whatsapp_chat_analyzer_pratyush-giri/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/PYTHON_DEVELOPMENT/whatsapp_chat_analyzer_pratyush-giri/preprocessor.py -------------------------------------------------------------------------------- /projects_Intermediate/Project_Domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/Project_Domain.md -------------------------------------------------------------------------------- /projects_Intermediate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/BookshelfApp_Argya-Wicaksana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/BookshelfApp_Argya-Wicaksana/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/BookshelfApp_Argya-Wicaksana/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/BookshelfApp_Argya-Wicaksana/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/BookshelfApp_Argya-Wicaksana/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/BookshelfApp_Argya-Wicaksana/main.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/BookshelfApp_Argya-Wicaksana/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/BookshelfApp_Argya-Wicaksana/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Calculator_SoumyaSuman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Calculator_SoumyaSuman/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Calculator_SoumyaSuman/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Calculator_SoumyaSuman/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Calculator_SoumyaSuman/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Calculator_SoumyaSuman/logic.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Calculator_SoumyaSuman/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Calculator_SoumyaSuman/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/package-lock.json -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/package.json -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/public/favicon.ico -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/public/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/public/logo192.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/public/logo512.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/public/manifest.json -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/public/robots.txt -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/App.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/App.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/app/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/app/store.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/CryptoDetails.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/CryptoDetails.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/Cryptocurrencies.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/Cryptocurrencies.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/Exchanges.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/Exchanges.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/Footer.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/Homepage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/Homepage.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/LineChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/LineChart.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/Loader.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/Navbar.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/News.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/News.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/components/index.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/images/brilliantlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/images/brilliantlogo.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/images/cryptocurrency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/images/cryptocurrency.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/index.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/services/cryptoAPI.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/services/cryptoAPI.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/services/cryptoNewsApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Cryptoverse_Prateek-Rath/src/services/cryptoNewsApi.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/about-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/about-img.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/bg.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/bg2.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/model.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/query.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/services-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/services-1.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/services-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/services-2.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/servies-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/servies-3.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/DemoPortfolio_SoumyaSuman/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/.gitignore -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/display/fss1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/display/fss1.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/display/fss2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/display/fss2.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/display/fss3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/display/fss3.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/display/fss4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/display/fss4.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/package-lock.json -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/package.json -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/public/favicon.ico -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/public/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/public/logo192.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/public/logo512.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/public/manifest.json -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/public/robots.txt -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/App.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/App.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/icons/body-part.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/icons/body-part.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/icons/equipment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/icons/equipment.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/icons/gym.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/icons/gym.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/icons/left-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/icons/left-arrow.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/icons/right-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/icons/right-arrow.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/icons/target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/icons/target.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/images/Logo-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/images/Logo-1.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/images/Logo.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/images/banner.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/images/banner1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/images/banner1.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/images/fitbytes1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/images/fitbytes1.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/images/fitbytes2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/assets/images/fitbytes2.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/BodyPart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/BodyPart.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/Detail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/Detail.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/ExerciseCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/ExerciseCard.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/ExerciseVideos.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/ExerciseVideos.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/Exercises.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/Exercises.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/Footer.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/HeroBanner.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/HeroBanner.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/HorizontalScrollbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/HorizontalScrollbar.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/Loader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/Loader.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/Navbar.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/Navbar.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/SearchExercises.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/SearchExercises.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/SimilarExercises.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/components/SimilarExercises.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/index.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/pages/ExerciseDetail.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/pages/ExerciseDetail.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/pages/Home.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/utils/fetchData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Fitbtytes_Prateek-Rath/src/utils/fetchData.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/InfiniteScroll_Sai-Soumyak-Nanda/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/InfiniteScroll_Sai-Soumyak-Nanda/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/InfiniteScroll_Sai-Soumyak-Nanda/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/InfiniteScroll_Sai-Soumyak-Nanda/index.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/InfiniteScroll_Sai-Soumyak-Nanda/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/InfiniteScroll_Sai-Soumyak-Nanda/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/InfiniteScroll_Sai-Soumyak-Nanda/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/InfiniteScroll_Sai-Soumyak-Nanda/index.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/InfiniteScroll_Sai-Soumyak-Nanda/loader.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/InfiniteScroll_Sai-Soumyak-Nanda/loader.svg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/MorseTranslator_Jeevan-Alok/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/MorseTranslator_Jeevan-Alok/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/MorseTranslator_Jeevan-Alok/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/MorseTranslator_Jeevan-Alok/app.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/MorseTranslator_Jeevan-Alok/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/MorseTranslator_Jeevan-Alok/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/MorseTranslator_Jeevan-Alok/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/MorseTranslator_Jeevan-Alok/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Moviepedia_Pallavi-Mahapatra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Moviepedia_Pallavi-Mahapatra/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Moviepedia_Pallavi-Mahapatra/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Moviepedia_Pallavi-Mahapatra/bootstrap.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Moviepedia_Pallavi-Mahapatra/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Moviepedia_Pallavi-Mahapatra/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Moviepedia_Pallavi-Mahapatra/movie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Moviepedia_Pallavi-Mahapatra/movie.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Moviepedia_Pallavi-Mahapatra/style2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Moviepedia_Pallavi-Mahapatra/style2.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PROFILE-CARD_PALLAVI-MAHAPATRA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PROFILE-CARD_PALLAVI-MAHAPATRA/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PROFILE-CARD_PALLAVI-MAHAPATRA/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PROFILE-CARD_PALLAVI-MAHAPATRA/bootstrap.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PROFILE-CARD_PALLAVI-MAHAPATRA/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PROFILE-CARD_PALLAVI-MAHAPATRA/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PROFILE-CARD_PALLAVI-MAHAPATRA/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PROFILE-CARD_PALLAVI-MAHAPATRA/profile.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PROFILE-CARD_PALLAVI-MAHAPATRA/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PROFILE-CARD_PALLAVI-MAHAPATRA/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/img/dice-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/img/dice-1.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/img/dice-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/img/dice-2.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/img/dice-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/img/dice-3.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/img/dice-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/img/dice-4.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/img/dice-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/img/dice-5.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/img/dice-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/img/dice-6.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/script.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PigGame_Adarsh_Murmu/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/.gitignore -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/.vscode/settings.json -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/package-lock.json -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/package.json -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/public/favicon.ico -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/public/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/public/manifest.json -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/public/robots.txt -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/App.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/App.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/App.test.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/Components/Card.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/Components/Card.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/Components/Generate.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/Components/Generate.jsx -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/battle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/battle.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/colorswd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/colorswd.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/hospital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/hospital.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/life.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/life.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/pokeball.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/pokeball.svg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/shield.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/shield1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/shield1.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/speed.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/swords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/images/swords.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/index.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/index.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/reportWebVitals.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PokeCatch_Jeevan-Alok/src/setupTests.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PrimeFactorCalc_Jeevan-Alok/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PrimeFactorCalc_Jeevan-Alok/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PrimeFactorCalc_Jeevan-Alok/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PrimeFactorCalc_Jeevan-Alok/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PrimeFactorCalc_Jeevan-Alok/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PrimeFactorCalc_Jeevan-Alok/script.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/PrimeFactorCalc_Jeevan-Alok/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/PrimeFactorCalc_Jeevan-Alok/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Tic-tac-toe_Pallavi-Mahapatra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Tic-tac-toe_Pallavi-Mahapatra/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Tic-tac-toe_Pallavi-Mahapatra/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Tic-tac-toe_Pallavi-Mahapatra/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Tic-tac-toe_Pallavi-Mahapatra/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Tic-tac-toe_Pallavi-Mahapatra/script.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Tic-tac-toe_Pallavi-Mahapatra/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Tic-tac-toe_Pallavi-Mahapatra/styles.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/ToDoList_SoumyaSuman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/ToDoList_SoumyaSuman/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/ToDoList_SoumyaSuman/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/ToDoList_SoumyaSuman/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/ToDoList_SoumyaSuman/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/ToDoList_SoumyaSuman/logic.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/ToDoList_SoumyaSuman/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/ToDoList_SoumyaSuman/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/TodoApp_Prasannajeet-Pradhan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/TodoApp_Prasannajeet-Pradhan/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/TodoApp_Prasannajeet-Pradhan/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/TodoApp_Prasannajeet-Pradhan/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/TodoApp_Prasannajeet-Pradhan/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/TodoApp_Prasannajeet-Pradhan/script.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/TodoApp_Prasannajeet-Pradhan/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/TodoApp_Prasannajeet-Pradhan/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Weatherapp_sahildkun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Weatherapp_sahildkun/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Weatherapp_sahildkun/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Weatherapp_sahildkun/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Weatherapp_sahildkun/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Weatherapp_sahildkun/script.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/Weatherapp_sahildkun/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/Weatherapp_sahildkun/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/budget-Tracker_Pallavi-Mahapatra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/budget-Tracker_Pallavi-Mahapatra/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/budget-Tracker_Pallavi-Mahapatra/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/budget-Tracker_Pallavi-Mahapatra/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/budget-Tracker_Pallavi-Mahapatra/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/budget-Tracker_Pallavi-Mahapatra/index.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/budget-Tracker_Pallavi-Mahapatra/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/budget-Tracker_Pallavi-Mahapatra/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/calculator_Aditya-Aswajeet-Nayak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/calculator_Aditya-Aswajeet-Nayak/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/calculator_Aditya-Aswajeet-Nayak/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/calculator_Aditya-Aswajeet-Nayak/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/calculator_Aditya-Aswajeet-Nayak/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/calculator_Aditya-Aswajeet-Nayak/index.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/calculator_Aditya-Aswajeet-Nayak/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/calculator_Aditya-Aswajeet-Nayak/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/countdown_Prasannajeet-Pradhan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/countdown_Prasannajeet-Pradhan/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/countdown_Prasannajeet-Pradhan/cristina-gottardi-CSpjU6hYo_0-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/countdown_Prasannajeet-Pradhan/cristina-gottardi-CSpjU6hYo_0-unsplash.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/countdown_Prasannajeet-Pradhan/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/countdown_Prasannajeet-Pradhan/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/countdown_Prasannajeet-Pradhan/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/countdown_Prasannajeet-Pradhan/script.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/countdown_Prasannajeet-Pradhan/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/countdown_Prasannajeet-Pradhan/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/deadjokes_Prasannajeet-Pradhan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/deadjokes_Prasannajeet-Pradhan/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/deadjokes_Prasannajeet-Pradhan/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/deadjokes_Prasannajeet-Pradhan/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/deadjokes_Prasannajeet-Pradhan/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/deadjokes_Prasannajeet-Pradhan/script.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/deadjokes_Prasannajeet-Pradhan/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/deadjokes_Prasannajeet-Pradhan/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/digitalClock_Aditya-Aswajeet-Nayak/README.md: -------------------------------------------------------------------------------- 1 | - Project Name - Digital Clock 2 | - Stack Used - HTML5 , CSS3 ,JAVASCRIPT 3 | -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/digitalClock_Aditya-Aswajeet-Nayak/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/digitalClock_Aditya-Aswajeet-Nayak/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/digitalClock_Aditya-Aswajeet-Nayak/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/digitalClock_Aditya-Aswajeet-Nayak/index.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/digitalClock_Aditya-Aswajeet-Nayak/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/digitalClock_Aditya-Aswajeet-Nayak/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/.gitignore -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/package-lock.json -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/package.json -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/postcss.config.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/public/favicon.ico -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/public/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/public/logo192.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/public/logo512.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/public/manifest.json -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/public/robots.txt -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/App.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/App.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/Data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/Data.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/Meme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/Meme.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/Navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/Navbar.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/images/4854c2cd8f0e69be5d0dd124662654f2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/images/4854c2cd8f0e69be5d0dd124662654f2.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/images/Troll Face (1).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/images/Troll Face (1).png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/index.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/index.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/reportWebVitals.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/src/setupTests.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/memegenerator_sahildkun/tailwind.config.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/11.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/121.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/121.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/123.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/123.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/README.md: -------------------------------------------------------------------------------- 1 | - Project Name - Simple Portfolio 2 | - Tech Stack used - HTML5 ,CSS3 , JAVASCRIPT 3 | -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/blog-1.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/blog-2.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/blog-3.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/blog-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/blog-4.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/blog-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/blog-5.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/blog-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/blog-6.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/blog-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/blog-7.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/css/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/about-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/about-img.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/banner-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/banner-1.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/banner-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/banner-2.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/banner-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/banner-3.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/blog-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/blog-1.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/blog-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/blog-2.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/blog-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/blog-3.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/cat-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/cat-1.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/cat-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/cat-2.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/cat-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/cat-3.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/cat-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/cat-4.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/cat-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/cat-5.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/cat-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/cat-6.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-1.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-2.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-3.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-4.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-5.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-6.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-7.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/food-8.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/home-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/home-img.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/home-img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/home-img1.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/home-parallax-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/home-parallax-img.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/home-parallax-img1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/home-parallax-img1.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/home-parallax-img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/home-parallax-img2.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/home-parallax-img3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/home-parallax-img3.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/home-parallax-img4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/home-parallax-img4.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/icon-1.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/icon-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/icon-2.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/icon-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/icon-3.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/menu-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/menu-1.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/menu-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/menu-2.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/menu-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/menu-3.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/menu-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/menu-4.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/menu-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/menu-5.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/menu-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/menu-6.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/row-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/row-banner.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/serv-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/serv-1.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/serv-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/serv-2.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/serv-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/serv-3.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/serv-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/image/serv-4.png -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/js/script.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/portfolio_Aditya-Aswajeet-Nayak/profile.jpg -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/simpleCalculator_Prasannajeet-Pradhan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/simpleCalculator_Prasannajeet-Pradhan/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/simpleCalculator_Prasannajeet-Pradhan/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/simpleCalculator_Prasannajeet-Pradhan/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/simpleCalculator_Prasannajeet-Pradhan/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/simpleCalculator_Prasannajeet-Pradhan/script.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/simpleCalculator_Prasannajeet-Pradhan/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/simpleCalculator_Prasannajeet-Pradhan/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/socialMediaMenu-Aditya-Aswajeet-Nayak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/socialMediaMenu-Aditya-Aswajeet-Nayak/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/socialMediaMenu-Aditya-Aswajeet-Nayak/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/socialMediaMenu-Aditya-Aswajeet-Nayak/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/socialMediaMenu-Aditya-Aswajeet-Nayak/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/socialMediaMenu-Aditya-Aswajeet-Nayak/index.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/socialMediaMenu-Aditya-Aswajeet-Nayak/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/socialMediaMenu-Aditya-Aswajeet-Nayak/style.css -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/todo_Prasannajeet-Pradhan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/todo_Prasannajeet-Pradhan/README.md -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/todo_Prasannajeet-Pradhan/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/todo_Prasannajeet-Pradhan/index.html -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/todo_Prasannajeet-Pradhan/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/todo_Prasannajeet-Pradhan/script.js -------------------------------------------------------------------------------- /projects_Intermediate/WEB_DEVELOPEMENT/todo_Prasannajeet-Pradhan/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Spectrum-CETB/Spectober_Fest/HEAD/projects_Intermediate/WEB_DEVELOPEMENT/todo_Prasannajeet-Pradhan/style.css --------------------------------------------------------------------------------