├── .gitignore ├── .gitmodules ├── .vscode └── settings.json ├── 1.png ├── 1.svg ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── Adhiraj's files ├── Data Science Basics │ ├── .ipynb_checkpoints │ │ └── 01-Introduction to Pandas-checkpoint.ipynb │ ├── 01-Choropleth Maps.ipynb │ ├── 01-Distribution Plots.ipynb │ ├── 01-Introduction to Pandas.ipynb │ ├── 01-Matplotlib Concepts Lecture.ipynb │ ├── 01-Pandas Built-in Data Visualization.ipynb │ ├── 01-Plotly and Cufflinks.ipynb │ ├── 02-Categorical Plots.ipynb │ ├── 02-Series.ipynb │ ├── 03-DataFrames.ipynb │ ├── 03-Matplotlib Exercises - Solutions.ipynb │ ├── 03-Matrix Plots.ipynb │ ├── 03-Pandas Data Visualization Exercise - Solutions.ipynb │ ├── 04-Advanced Matplotlib Concepts.ipynb │ ├── 04-Grids.ipynb │ ├── 04-Missing Data.ipynb │ ├── 05-Groupby.ipynb │ ├── 05-Regression Plots.ipynb │ ├── 06-Merging, Joining, and Concatenating.ipynb │ ├── 06-Style and Color.ipynb │ ├── 07-Operations.ipynb │ ├── 08-Data Input and Output.ipynb │ └── 08-Seaborn Exercises - Solutions.ipynb └── House Price Predictor │ ├── Advanced_House_Price_Prediction.ipynb │ ├── submission.csv │ ├── test.csv │ └── train.csv ├── Aditya's Files ├── HORSES.cpp ├── HelloWorld.cpp ├── InfiniteRunner │ ├── Config │ │ ├── DefaultEditor.ini │ │ ├── DefaultEngine.ini │ │ ├── DefaultGame.ini │ │ └── DefaultInput.ini │ ├── Content │ │ ├── Assets │ │ │ ├── Flipbooks │ │ │ │ ├── Flipbook_Dead.uasset │ │ │ │ ├── Flipbook_Fall.uasset │ │ │ │ ├── Flipbook_Jump.uasset │ │ │ │ ├── Flipbook_Run.uasset │ │ │ │ └── Flipbook_Slide.uasset │ │ │ ├── Materials │ │ │ │ ├── M_Background.uasset │ │ │ │ └── M_Ground.uasset │ │ │ ├── Meshes │ │ │ │ └── SM_Plane.uasset │ │ │ ├── Sprites │ │ │ │ ├── Cat │ │ │ │ │ ├── Dead │ │ │ │ │ │ ├── Dead__10__Sprite.uasset │ │ │ │ │ │ ├── Dead__1__Sprite.uasset │ │ │ │ │ │ ├── Dead__2__Sprite.uasset │ │ │ │ │ │ ├── Dead__3__Sprite.uasset │ │ │ │ │ │ ├── Dead__4__Sprite.uasset │ │ │ │ │ │ ├── Dead__5__Sprite.uasset │ │ │ │ │ │ ├── Dead__6__Sprite.uasset │ │ │ │ │ │ ├── Dead__7__Sprite.uasset │ │ │ │ │ │ ├── Dead__8__Sprite.uasset │ │ │ │ │ │ └── Dead__9__Sprite.uasset │ │ │ │ │ ├── Fall │ │ │ │ │ │ ├── Fall__4__Sprite.uasset │ │ │ │ │ │ ├── Fall__5__Sprite.uasset │ │ │ │ │ │ ├── Fall__6__Sprite.uasset │ │ │ │ │ │ ├── Fall__7__Sprite.uasset │ │ │ │ │ │ └── Fall__8__Sprite.uasset │ │ │ │ │ ├── Jump │ │ │ │ │ │ ├── Jump__4__Sprite.uasset │ │ │ │ │ │ ├── Jump__5__Sprite.uasset │ │ │ │ │ │ ├── Jump__6__Sprite.uasset │ │ │ │ │ │ ├── Jump__7__Sprite.uasset │ │ │ │ │ │ └── Jump__8__Sprite.uasset │ │ │ │ │ ├── Run │ │ │ │ │ │ ├── Run__1__Sprite.uasset │ │ │ │ │ │ ├── Run__2__Sprite.uasset │ │ │ │ │ │ ├── Run__3__Sprite.uasset │ │ │ │ │ │ ├── Run__4__Sprite.uasset │ │ │ │ │ │ ├── Run__5__Sprite.uasset │ │ │ │ │ │ ├── Run__6__Sprite.uasset │ │ │ │ │ │ ├── Run__7__Sprite.uasset │ │ │ │ │ │ └── Run__8__Sprite.uasset │ │ │ │ │ └── Slide │ │ │ │ │ │ ├── Slide__10__Sprite.uasset │ │ │ │ │ │ ├── Slide__1__Sprite.uasset │ │ │ │ │ │ ├── Slide__2__Sprite.uasset │ │ │ │ │ │ ├── Slide__3__Sprite.uasset │ │ │ │ │ │ ├── Slide__4__Sprite.uasset │ │ │ │ │ │ ├── Slide__5__Sprite.uasset │ │ │ │ │ │ ├── Slide__6__Sprite.uasset │ │ │ │ │ │ ├── Slide__7__Sprite.uasset │ │ │ │ │ │ ├── Slide__8__Sprite.uasset │ │ │ │ │ │ └── Slide__9__Sprite.uasset │ │ │ │ └── Hazards │ │ │ │ │ ├── Saw_Sprite.uasset │ │ │ │ │ └── Spike_Sprite.uasset │ │ │ └── Textures │ │ │ │ ├── Background │ │ │ │ └── T_Background.uasset │ │ │ │ ├── Cat │ │ │ │ ├── Dead │ │ │ │ │ ├── T_Dead1.uasset │ │ │ │ │ ├── T_Dead10.uasset │ │ │ │ │ ├── T_Dead2.uasset │ │ │ │ │ ├── T_Dead3.uasset │ │ │ │ │ ├── T_Dead4.uasset │ │ │ │ │ ├── T_Dead5.uasset │ │ │ │ │ ├── T_Dead6.uasset │ │ │ │ │ ├── T_Dead7.uasset │ │ │ │ │ ├── T_Dead8.uasset │ │ │ │ │ └── T_Dead9.uasset │ │ │ │ ├── Fall │ │ │ │ │ ├── T_Fall1.uasset │ │ │ │ │ ├── T_Fall2.uasset │ │ │ │ │ ├── T_Fall3.uasset │ │ │ │ │ ├── T_Fall4.uasset │ │ │ │ │ └── T_Fall5.uasset │ │ │ │ ├── Jump │ │ │ │ │ ├── T_Jump1.uasset │ │ │ │ │ ├── T_Jump2.uasset │ │ │ │ │ ├── T_Jump3.uasset │ │ │ │ │ ├── T_Jump4.uasset │ │ │ │ │ └── T_Jump5.uasset │ │ │ │ ├── Run │ │ │ │ │ ├── T_Run1.uasset │ │ │ │ │ ├── T_Run2.uasset │ │ │ │ │ ├── T_Run3.uasset │ │ │ │ │ ├── T_Run4.uasset │ │ │ │ │ ├── T_Run5.uasset │ │ │ │ │ ├── T_Run6.uasset │ │ │ │ │ ├── T_Run7.uasset │ │ │ │ │ └── T_Run8.uasset │ │ │ │ └── Slide │ │ │ │ │ ├── T_Slide1.uasset │ │ │ │ │ ├── T_Slide10.uasset │ │ │ │ │ ├── T_Slide2.uasset │ │ │ │ │ ├── T_Slide3.uasset │ │ │ │ │ ├── T_Slide4.uasset │ │ │ │ │ ├── T_Slide5.uasset │ │ │ │ │ ├── T_Slide6.uasset │ │ │ │ │ ├── T_Slide7.uasset │ │ │ │ │ ├── T_Slide8.uasset │ │ │ │ │ └── T_Slide9.uasset │ │ │ │ ├── Ground │ │ │ │ └── T_GroundTile.uasset │ │ │ │ └── Hazards │ │ │ │ ├── T_Saw.uasset │ │ │ │ └── T_Spikes.uasset │ │ ├── Blueprints │ │ │ ├── BP_CatCharacter.uasset │ │ │ ├── BP_Cat_Runner_GameMode.uasset │ │ │ ├── BP_Game_HUD.uasset │ │ │ ├── BP_Saw.uasset │ │ │ └── BP_Spikes.uasset │ │ └── Maps │ │ │ ├── Gameplay.umap │ │ │ └── Gameplay_BuiltData.uasset │ └── InfiniteRunner.uproject ├── JOHNY.cpp └── UKROBOT.cpp ├── Akshay000000 files ├── A - Frog 1.cxx ├── ArrayInReverseorder.cpp ├── Frog 2.cxx └── Knapsack1.cxx ├── Algorithms ├── MergeSort.py ├── SelectionSort.py ├── binarySearch.js ├── bubbleSort.js ├── first_n_primes.c ├── insertion.js ├── linearSearch.js ├── mergeSort.js ├── quickSort.js └── selectionSort.js ├── Ashray's files └── Secrets │ ├── .DS_Store │ ├── .gitignore │ ├── app.js │ ├── package-lock.json │ ├── package.json │ ├── public │ └── css │ │ ├── bootstrap-social.css │ │ └── styles.css │ └── views │ ├── home.ejs │ ├── login.ejs │ ├── partials │ ├── footer.ejs │ └── header.ejs │ ├── register.ejs │ ├── secrets.ejs │ └── submit.ejs ├── Backtracking ├── Flood_Fill.cpp ├── Maze.cpp └── N_Queens.cpp ├── Bank Loan Modelling ├── .gitattributes ├── Bank_Loan_Modelling_SR.ipynb ├── Deployment │ ├── README.md │ ├── Requirements.txt │ ├── app.py │ └── demo.gif └── README.md ├── BioInformatica └── Transcricao.py ├── Boston-Housing-Price ├── Boston House Prices Linear Regression.ipynb ├── Deployment │ ├── README.md │ ├── Requirements.txt │ └── app.py ├── Media │ ├── DecisionTree.PNG │ └── LinearRegression.PNG └── README.md ├── CARTOONING-AN-IMAGE-USING-OPENCV-master ├── CARTOONING AN IMAGE USING OPENCV.ipynb ├── Cartoon_BIRD.png └── README.md ├── Calculator ├── Calculator in C.c ├── Calculator.py ├── background.jpg ├── calcualator.css ├── calculator ├── calculator.html ├── calculator.py ├── calcuscript.js ├── chappie.jpg └── index.html ├── Colored_console_in_cpp └── main.cpp ├── ColorfulSpiral └── spiral.py ├── Criptografia └── Descriptar_e_encriptar_dados.py ├── Cryptography └── AES_Encryption_Decryption.py ├── DAA_Algo ├── DnC(MinNMax).c ├── DnC(MinNMax).cpp ├── Knapsack.cpp ├── MergeSort.c └── QuickSort.cpp ├── Deepak Sharma ├── A - A Prize No One Can Win.cpp ├── A. Equalize Prices Again.cpp ├── A. Mahmoud and Longest Uncommon Subsequence.cpp ├── A. Sum of Round Numbers.cpp ├── A. Two Substrings.cpp ├── Agressive_Cow.cpp ├── B. Binary Period.cpp ├── B. Burglar and Matches.cpp ├── B. Caisa and Pylons.cpp ├── B. Dreamoon Likes Permutations.cpp └── C1. Skyscrapers (easy version).cpp ├── DialogBox ├── CHANGELOG.md ├── assets │ └── flare │ │ ├── error.flr │ │ ├── error_without_loop.flr │ │ ├── info.flr │ │ ├── info_without_loop.flr │ │ ├── succes.flr │ │ ├── succes_without_loop.flr │ │ ├── warning.flr │ │ └── warning_without_loop.flr ├── doc │ └── gif.gif ├── example │ ├── README.md │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── kotlin │ │ │ │ │ └── cu │ │ │ │ │ │ └── marcos930807 │ │ │ │ │ │ └── fancy_dialog_example │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── 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 │ │ │ │ │ └── styles.xml │ │ │ │ └── profile │ │ │ │ └── AndroidManifest.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ └── gradle-wrapper.properties │ │ └── settings.gradle │ ├── ios │ │ ├── Flutter │ │ │ ├── AppFrameworkInfo.plist │ │ │ ├── Debug.xcconfig │ │ │ ├── Flutter.podspec │ │ │ └── Release.xcconfig │ │ ├── Runner.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── Runner.xcscheme │ │ ├── Runner.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── 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 │ │ ├── main.dart │ │ ├── routes.dart │ │ └── test_page.dart │ ├── pubspec.lock │ ├── pubspec.yaml │ └── test │ │ └── widget_test.dart ├── lib │ ├── awesome_dialog.dart │ └── src │ │ ├── animated_button.dart │ │ ├── anims │ │ ├── anims.dart │ │ └── flare_header.dart │ │ └── vertical_stack_header_dialog.dart ├── pubspec.lock ├── pubspec.yaml └── test │ └── fancy_dialog_test.dart ├── Dice Rolling Simulator by Muhammad Bilal ├── Dice Rolling.py ├── README.txt ├── __pycache__ │ └── code.cpython-37.pyc ├── code.py ├── code.spec └── dist │ └── Dice Roller.exe ├── DrVictor's Files └── guessinggame.py ├── Drum Kit ├── images │ ├── crash.png │ ├── drumstick.png │ ├── kick.png │ ├── snare.png │ ├── tom1.png │ ├── tom2.png │ ├── tom3.png │ └── tom4.png ├── index.html ├── index.js ├── sounds │ ├── crash.mp3 │ ├── kick-bass.mp3 │ ├── snare.mp3 │ ├── tom-1.mp3 │ ├── tom-2.mp3 │ ├── tom-3.mp3 │ └── tom-4.mp3 └── styles.css ├── Electron Music Player ├── Readme.md ├── enounce.ico ├── enounce.js ├── html │ ├── enounce.html │ ├── gif │ │ └── main.gif │ ├── index.html │ ├── scripts │ │ ├── player.js │ │ └── youtube.js │ ├── styles │ │ ├── basic.css │ │ ├── bootstrap.css │ │ └── bootstrap.css.map │ └── youtube.html ├── package-lock.json └── package.json ├── Estrutura de dados ├── C │ ├── Fila │ │ ├── FilaDinamica.c │ │ ├── FilaDinamica.h │ │ ├── FilaDuplamenteEncadeada.c │ │ └── FilaDuplamenteEncadeada.h │ ├── Lista │ │ ├── ListaCircular.c │ │ ├── ListaDinamica.c │ │ ├── ListaDinamica.h │ │ ├── ListaDuplamenteEncadeada.c │ │ ├── ListaDuplamenteEncadeada.h │ │ └── ListaEstatica.c │ ├── Pilha │ │ ├── PilhaDinamica.c │ │ ├── PilhaDinamica.h │ │ └── PilhaEstatica.c │ └── Tabela de Simbolos │ │ ├── TabelaDeSimbolos.c │ │ ├── TabelaDeSimbolos.exe │ │ └── TabelaDeSimbolos.h └── Java │ ├── Fila de Prioridade │ ├── Cliente.java │ ├── Fila.java │ ├── Fila_Cliente.java │ └── No.java │ ├── Fila │ ├── Cliente.java │ ├── Fila.java │ ├── Fila_Cliente.java │ └── No.java │ ├── Lista Encadeada │ ├── BibliotecaMain.java │ ├── Book.java │ └── Library.java │ ├── Pilha Dinamica │ ├── Biblioteca.java │ ├── Livro.java │ ├── MainPrincipal.java │ └── No.java │ ├── Pilha Dinamica_2 │ ├── People.java │ ├── Pessoa.java │ └── Stack.java │ └── Pilha Estatica │ ├── BibliotecaMain.java │ ├── LibraryStack.java │ └── Livro.java ├── Fixer.txt ├── FormatMoney └── FormatMoney.js ├── Fruits Project ├── app.js ├── package-lock.json └── package.json ├── Go ├── BubbleSort.go ├── CombSort.go ├── MergeSort.go ├── armstrong_number.go ├── caluclate_bill.go ├── factorial.go ├── fibonacci_series.go ├── pascal_triangle.go └── simple_calculator.go ├── Google Hangouts ├── Greedy Best First Search └── GBFS.py ├── Hackerrank Solution Snippets ├── Alphabet Rangoli.py ├── Alternating_Characters.py ├── Capitalize.py ├── Count_Triplets.py ├── Designer Door Mat.py ├── Find a string.py ├── Find the Runner-Up Score!.py ├── Finding the eprcentage.py ├── Introduction to Sets.py ├── Java 1D Array (Part 2).java ├── Java BigDecimal.java ├── Java Currency Formatter.java ├── Java Output Formatting.java └── Java Regex 2 - Duplicate Words.java ├── Hacktoberfest2020 ├── .DS_Store ├── index.html └── styles.css ├── HandwrittenDigitrecognitionWebApp ├── HandwrittenDigitRecognition.ipynb ├── MEDIA │ ├── Demo-Draw.gif │ ├── Upload-Via-Link.gif │ └── demo-device.gif ├── README.md ├── Requirements.txt └── app.py ├── Harry Potter's Invisible Cloak ├── .ipynb_checkpoints │ └── Harry-checkpoint.ipynb └── Harry.ipynb ├── Harshit's files ├── MaxPP.cpp ├── README.md └── stockpred │ ├── StockPredLSTM1.ipynb │ └── TSLA.csv ├── Himanshu4642's files ├── 0-1 Knapsack Memoization.cpp ├── 0-1 Knapsack Recursive.cpp ├── 0-1 Knapsack Top-Down.cpp ├── Count of Subsets with given diff.cpp ├── Count of Subsets with given sum.cpp ├── Equal Sum Partition.cpp ├── Minimum Subset Absolute Sum Difference.cpp ├── Subset Sum.cpp └── Target Sum.cpp ├── House Price Predictor └── House-price-predictor.ipynb ├── IPL Analysis & Visualizations ├── .ipynb_checkpoints │ └── IPL - Visualizations-checkpoint.ipynb ├── Datasets │ └── matches.csv └── IPL - Visualizations.ipynb ├── Important Pandas Dataframe Commands ├── .ipynb_checkpoints │ └── Important Pandas Dataframe Commands-checkpoint.ipynb ├── Important Pandas Dataframe Commands.ipynb ├── README.md └── nba.csv ├── Insertion_deletion_LinkedList.c ├── Interview Based ├── Anagram.py ├── CamelCase Pattern Matching.py ├── Check if strings are rotations of each other or not.py ├── Chocolate Distribution Problem.py ├── Convert array into Zig-Zag fashion.py ├── Count the triplets.py ├── Element with left side smaller and right side greater.py ├── Equilibrium Point.py ├── Form a palindrome.py ├── Implement Atoi.py ├── Implement strstr.py ├── Inversion of array.py ├── Kadane's Algorithm.py ├── Kth smallest element.py ├── Largest Number formed from an Array.py ├── Last index of One.py ├── Leader_in_array.py ├── Longest Palindrome in a String.py ├── Merge Without Extra Space.py ├── Minimum Platforms.py ├── Missing number in array.py ├── Most frequent word in an array of strings.py ├── Non Repeating Character.py ├── Number of pairs.py ├── Organiser.py ├── Pairs.py ├── Permutations of a given string.py ├── Rearrange Array Alternately.py ├── Repeated.py ├── Top 4.py └── reverse.py ├── Java Prog ├── ChecksimilarcharacterStringProgram.java ├── FindthemiddleofthegivenLinkedList.java ├── PalindromicLinkedList.java ├── RemoveDuplicatesfromtheLinkedList.java ├── ReverseString.java └── noOfUpperCase.java ├── Jayvardhan ├── date.py ├── experiment.py └── working-mail.py ├── LICENSE ├── Leetcode_solutions ├── 141. Linked List Cycle │ ├── 141. Linked List Cycle.java │ └── Readme.md ├── 142. Linked List Cycle II │ ├── 142.linked-list-ii.java │ └── Readme.md ├── 15. 3sum │ ├── 15.3sum.java │ └── Readme.md ├── 442. Find All Duplicates in an Array │ ├── 442. Find All Duplicates in an Array.java │ └── Readme.md └── 83. Remove Duplicates from Sorted List │ ├── 83. Remove Duplicates from Sorted List.java │ └── Readme.md ├── Linked List ADT ├── Linked List ADT │ ├── linked_list │ └── linked_list.cpp └── README.md ├── ML from sratch ├── distance_between_2_points.py ├── heart_predict.py ├── linear_regression.py └── logistic_regression.py ├── Machine Learning ├── Airplane Severity.ipynb ├── AirplaneAccident.csv ├── Perceptron.ipynb └── README.md ├── Mail-with-Python ├── htmlMail.py └── index.html ├── Moving Block Game ├── .gitignore ├── index.html ├── package-lock.json ├── package.json └── scripts.js ├── Moving Object Detection ├── Moving_Object_Detection_in_Videos.ipynb └── README.md ├── Multisource bfs ├── Codechef - Snakes and transition from Capitalism to Socialism.cpp ├── Codeforces - Christmas Trees.cpp └── Spoj - BITMAP - Bitmap.cpp ├── N-Queens in Python └── n-queens.py ├── Nitish(Waterupto) Files ├── CJKOB20D.cpp └── CJKOB20J.cpp ├── NumPy Guide ├── 1. NumPy Introduction.ipynb ├── 2. Basics of NumPy Arrays.ipynb ├── 3. Computation on NumPy Arrays - Universal Functions.ipynb ├── 4. Comparisons, Masks and Boolean Logic.ipynb ├── 5. Fancy Indexing.ipynb ├── 6. Sorting Arrays.ipynb ├── 7. Structured Data - NumPy's Structured Arrays.ipynb └── README.md ├── OpenCV ├── Blender_Suzanne2.jpg ├── HappyFish.jpg ├── LinuxLogo.jpg ├── aloeGT.png ├── apple.jpg ├── detect_blob.png ├── getting_started_with_imgs.py ├── gradient.png ├── l.png ├── l1.png ├── left08.jpg ├── openCV.ipynb ├── opencv-logo.png ├── pic3.png ├── s.py ├── smarties.png └── started_with_videos.py ├── PDF-Reader └── pdfreader.py ├── Palveet's files ├── index.html └── styles.css ├── Prathamesh Files ├── Main.java ├── Practicing_Proficiency │ ├── Append and Delete.java │ ├── Beautiful Days at the Movies.java │ ├── Diagonal Difference.java │ ├── Encryption.java │ ├── Shoe_Pair.java │ ├── The Grid Search.java │ ├── kangaroo.java │ └── saveThePrisoner.java ├── README.md └── perimeter.java ├── Progamação competitiva └── algoritmo_de_euclide.cpp ├── Python Image Downloader └── image_downloader.py ├── Python-mysql ├── README.md └── mysql-python.py ├── Python ├── Football_Database │ ├── .DS_Store │ ├── data │ │ ├── 1970.csv │ │ ├── 1971.csv │ │ ├── 1972.csv │ │ ├── 1973.csv │ │ ├── 1974.csv │ │ ├── 1975.csv │ │ ├── 1976.csv │ │ ├── 1977.csv │ │ ├── 1978.csv │ │ ├── 1979.csv │ │ ├── 1980.csv │ │ ├── 1981.csv │ │ ├── 1982.csv │ │ ├── 1983.csv │ │ ├── 1984.csv │ │ ├── 1985.csv │ │ ├── 1986.csv │ │ ├── 1987.csv │ │ ├── 1988.csv │ │ ├── 1989.csv │ │ ├── 1990.csv │ │ ├── 1991.csv │ │ ├── 1992.csv │ │ ├── 1993.csv │ │ ├── 1994.csv │ │ ├── 1995.csv │ │ ├── 1996.csv │ │ ├── 1997.csv │ │ ├── 1998.csv │ │ ├── 1999.csv │ │ ├── 2000.csv │ │ ├── 2001.csv │ │ ├── 2002.csv │ │ ├── 2003.csv │ │ ├── 2004.csv │ │ ├── 2005.csv │ │ ├── 2006.csv │ │ ├── 2007.csv │ │ ├── 2008.csv │ │ ├── 2009.csv │ │ ├── 2010.csv │ │ ├── 2011.csv │ │ ├── 2012.csv │ │ ├── 2013.csv │ │ ├── 2014.csv │ │ ├── 2015.csv │ │ ├── 2016.csv │ │ ├── 2017.csv │ │ ├── 2018.csv │ │ └── 2019.csv │ └── football.py └── wordcount.py ├── R └── create_graph_hist.R ├── README.md ├── Random ├── .DS_Store ├── FirstIndexOfNumber.cpp ├── RockPaperScissorsSpockLizard.py ├── Sreevishnu's files └── no of div without seive.cpp ├── Saakshi's files ├── .expo-shared │ └── assets.json ├── .gitignore ├── App.js ├── app.json ├── assets │ ├── fonts │ │ ├── OpenSans-Bold.ttf │ │ └── OpenSans-Regular.ttf │ ├── icon.png │ └── splash.png ├── babel.config.js ├── components │ ├── CategoryGridTile.js │ ├── CustomHeaderButton.js │ ├── MealItem.js │ └── MealList.js ├── constants │ ├── BodyText.js │ ├── Colors.js │ └── Theme.js ├── data │ └── dummy-data.js ├── models │ ├── category.js │ └── meal.js ├── navigations │ └── MealNavigator.js ├── package-lock.json ├── package.json ├── screens │ ├── CategoriesScreen.js │ ├── CategoryMealsScreen.js │ ├── FavouritesScreen.js │ ├── FiltersScreen.js │ └── MealDetailScreen.js └── store │ ├── actions │ ├── mealsAction.js │ └── themeAction.js │ └── reducers │ ├── mealsReducer.js │ └── themeReducer.js ├── Sandipan's files ├── Drum-Kit Webpage │ ├── .DS_Store │ ├── LICENSE │ ├── README.md │ ├── composer.json │ ├── images │ │ ├── crash.png │ │ ├── kick.png │ │ ├── snare.png │ │ ├── tom1.png │ │ ├── tom2.png │ │ ├── tom3.png │ │ └── tom4.png │ ├── index.html │ ├── index.js │ ├── sounds │ │ ├── crash.mp3 │ │ ├── kick-bass.mp3 │ │ ├── snare.mp3 │ │ ├── tom-1.mp3 │ │ ├── tom-2.mp3 │ │ ├── tom-3.mp3 │ │ └── tom-4.mp3 │ └── styles.css ├── JS-based Memory Game │ ├── .DS_Store │ ├── game.js │ ├── index.html │ ├── sounds │ │ ├── blue.mp3 │ │ ├── green.mp3 │ │ ├── red.mp3 │ │ ├── wrong.mp3 │ │ └── yellow.mp3 │ └── styles.css └── Node based Calculator │ ├── bmiCalculator.html │ ├── calculator.js │ ├── node_modules │ ├── .bin │ │ ├── mime │ │ ├── mime.cmd │ │ └── mime.ps1 │ ├── accepts │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── array-flatten │ │ ├── LICENSE │ │ ├── README.md │ │ ├── array-flatten.js │ │ └── package.json │ ├── body-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── read.js │ │ │ └── types │ │ │ │ ├── json.js │ │ │ │ ├── raw.js │ │ │ │ ├── text.js │ │ │ │ └── urlencoded.js │ │ └── package.json │ ├── bytes │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── content-disposition │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── content-type │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── cookie-signature │ │ ├── .npmignore │ │ ├── History.md │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── cookie │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── debug │ │ ├── .coveralls.yml │ │ ├── .eslintrc │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── component.json │ │ ├── karma.conf.js │ │ ├── node.js │ │ ├── package.json │ │ └── src │ │ │ ├── browser.js │ │ │ ├── debug.js │ │ │ ├── index.js │ │ │ ├── inspector-log.js │ │ │ └── node.js │ ├── depd │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── browser │ │ │ │ └── index.js │ │ │ └── compat │ │ │ │ ├── callsite-tostring.js │ │ │ │ ├── event-listener-count.js │ │ │ │ └── index.js │ │ └── package.json │ ├── destroy │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── ee-first │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── encodeurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── escape-html │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── etag │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── express │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── application.js │ │ │ ├── express.js │ │ │ ├── middleware │ │ │ │ ├── init.js │ │ │ │ └── query.js │ │ │ ├── request.js │ │ │ ├── response.js │ │ │ ├── router │ │ │ │ ├── index.js │ │ │ │ ├── layer.js │ │ │ │ └── route.js │ │ │ ├── utils.js │ │ │ └── view.js │ │ └── package.json │ ├── finalhandler │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── forwarded │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── fresh │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── http-errors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── iconv-lite │ │ ├── Changelog.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── encodings │ │ │ ├── dbcs-codec.js │ │ │ ├── dbcs-data.js │ │ │ ├── index.js │ │ │ ├── internal.js │ │ │ ├── sbcs-codec.js │ │ │ ├── sbcs-data-generated.js │ │ │ ├── sbcs-data.js │ │ │ ├── tables │ │ │ │ ├── big5-added.json │ │ │ │ ├── cp936.json │ │ │ │ ├── cp949.json │ │ │ │ ├── cp950.json │ │ │ │ ├── eucjp.json │ │ │ │ ├── gb18030-ranges.json │ │ │ │ ├── gbk-added.json │ │ │ │ └── shiftjis.json │ │ │ ├── utf16.js │ │ │ └── utf7.js │ │ ├── lib │ │ │ ├── bom-handling.js │ │ │ ├── extend-node.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── streams.js │ │ └── package.json │ ├── inherits │ │ ├── LICENSE │ │ ├── README.md │ │ ├── inherits.js │ │ ├── inherits_browser.js │ │ └── package.json │ ├── ipaddr.js │ │ ├── LICENSE │ │ ├── README.md │ │ ├── ipaddr.min.js │ │ ├── lib │ │ │ ├── ipaddr.js │ │ │ └── ipaddr.js.d.ts │ │ └── package.json │ ├── media-typer │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── merge-descriptors │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── methods │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime-db │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── db.json │ │ ├── index.js │ │ └── package.json │ ├── mime-types │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mime │ │ ├── .npmignore │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cli.js │ │ ├── mime.js │ │ ├── package.json │ │ ├── src │ │ │ ├── build.js │ │ │ └── test.js │ │ └── types.json │ ├── ms │ │ ├── index.js │ │ ├── license.md │ │ ├── package.json │ │ └── readme.md │ ├── negotiator │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── charset.js │ │ │ ├── encoding.js │ │ │ ├── language.js │ │ │ └── mediaType.js │ │ └── package.json │ ├── on-finished │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── parseurl │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── path-to-regexp │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ └── package.json │ ├── proxy-addr │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── qs │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ └── qs.js │ │ ├── lib │ │ │ ├── formats.js │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ │ ├── package.json │ │ └── test │ │ │ ├── .eslintrc │ │ │ ├── index.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ ├── range-parser │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── raw-body │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── safe-buffer │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── safer-buffer │ │ ├── LICENSE │ │ ├── Porting-Buffer.md │ │ ├── Readme.md │ │ ├── dangerous.js │ │ ├── package.json │ │ ├── safer.js │ │ └── tests.js │ ├── send │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── node_modules │ │ │ └── ms │ │ │ │ ├── index.js │ │ │ │ ├── license.md │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ └── package.json │ ├── serve-static │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── setprototypeof │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ └── test │ │ │ └── index.js │ ├── statuses │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── codes.json │ │ ├── index.js │ │ └── package.json │ ├── toidentifier │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── type-is │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── unpipe │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── utils-merge │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ └── vary │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── package-lock.json │ └── package.json ├── Sarthak Files └── Application-1 Interactive Dictionary │ ├── app1.py │ ├── data.json │ └── exercise.py ├── Searching-algo ├── binary-search.cpp ├── exponential-search.cpp ├── interpolation-search.cpp └── linear-search.cpp ├── Spam Ham Detector ├── README.md ├── Spam Filter Demo.ipynb └── emails.zip ├── Star Patterns cpp ├── cross.cpp ├── diamond.cpp ├── pattern-star.cpp ├── reverse-star.cpp ├── square.cpp └── traingle.cpp ├── Suvodeep's Files ├── FloydsTriangle.cpp └── PascalsTraingle.cpp ├── Tic Tac Toe ├── hoct3.py └── tic-tac-toe.py ├── Tree_Traversal ├── Boundary_Traversal.cpp ├── InOrder_Traversal.cpp ├── PostOrder_Traversal.cpp ├── PreOrder_Traversal.cpp └── Spiral_Traversal.cpp ├── Triangle_PrintingStar ├── triamgle.java ├── triangle.java ├── triangle1.java ├── triangle2.java ├── triangle3.java └── triangle4.java ├── Url-Shortner └── urlshortner.py ├── Vedansh's files └── Notepad │ ├── Notepad.py │ ├── README.md │ └── notepad_icon.ico ├── Vehicle Counting └── VehicleCounter.py ├── Web_Crawler ├── Books_scraper.py └── Quotes_extractor.py ├── Word-List-Generator └── wordlistgen.py ├── alarmclock ├── ann-www ├── addition.js ├── hello-world.js ├── multiply.js └── subtraction.js ├── apurva's fraud detection system ├── fraud detection.ipynb └── ic.csv ├── apurva's supermarket system ├── Makefile ├── a.out ├── clerk.h ├── customer.h ├── dataClass.h ├── grocery_store.cpp ├── grocery_store.o ├── items.dat └── store ├── bin_search ├── Aggressive_Cows.cpp ├── Binary_Search(Recursion).cpp ├── Book_Allocation.cpp └── min-pages.cpp ├── binary_search_tree └── delbst.c ├── c program ├── Circular LinkedList.c ├── Create A Basic Stack.c ├── Create Queue Using LinkedList.c ├── Doubly LinkedList.c ├── LinkedList Add Consonants After Vowels.c ├── calender.c ├── concatenate.c ├── fibbonaci_using_recursion.c ├── max_min_array.c ├── sumoffirst10naturalnumber.c └── toggle_case.c ├── cp ├── .gitignore ├── model │ └── User.js ├── package-lock.json ├── package.json ├── routes │ ├── auth.js │ ├── posts.js │ └── verifyToken.js ├── server.js └── validation.js ├── cpp files ├── Binary Search Iter.cpp ├── Complex number calculator.cpp ├── DLL.cpp ├── Linked List Functions.cpp ├── Matrix Multiplication.cpp ├── Pattern pyramid.cpp ├── README.md ├── SLL.cpp ├── STL_UnorderedMap ├── all_indeces_prob.cpp ├── binarytree.c ├── mergeSort.cpp └── palindrome in c ├── currencyconverter.py ├── doubly_linked_list └── dll.c ├── event handling ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── bin │ ├── blue$thehandler.class │ ├── blue.class │ └── demo.class └── src │ └── demo.java ├── hacktw ├── add.c ├── add.cpp ├── add.js ├── add.py ├── hello-world.c ├── hello-world.cpp ├── hello-world.js └── hello-world.py ├── javascriptanimation ├── kalash's leetcode questions solution ├── add_search_word.py ├── all_dublicates.py ├── defanging an ip address.py ├── deompress_run_lenght.py ├── detecctcapital.py ├── h-index.py ├── hindex.py ├── how_number_are_smaller.py ├── jewels.py ├── kids_with_greatest_num_of_candies.py ├── longest-substring.py ├── longest_palindroem.py ├── no_to_reduce_no_to_zero.py ├── number_of_good_pairs.py ├── power_of_four.py ├── rotten_oranges.py ├── shuffle_string.py ├── shuffle_the_array.py ├── valid_palindrome.py └── xor_operation_array.py ├── madlibsgenerator.py ├── meme-generator ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── Header.js │ ├── MemeGeneratore.js │ ├── index.css │ ├── index.js │ ├── serviceWorker.js │ └── setupTests.js └── yarn.lock ├── my designs ├── chegg final.pdf ├── sample 1.pdf └── sample 2.pdf ├── nathzi1505_ml_examples ├── Association_Rule_Learning │ ├── Apriori.ipynb │ └── Eclat.ipynb ├── Classification │ ├── Best_Model.ipynb │ ├── Decision_Tree_Classification.ipynb │ ├── KNN.ipynb │ ├── Kernel_SVM.ipynb │ ├── Logistic_Regression.ipynb │ ├── Naive_Bayes_Classification.ipynb │ ├── Random_Forest.ipynb │ └── SVM.ipynb ├── Clustering │ ├── Hierarchical_Clustering.ipynb │ └── K-Means.ipynb ├── Data_Preprocessing.ipynb ├── Deep_Learning │ ├── .ipynb_checkpoints │ │ ├── AutoEncoder-checkpoint.ipynb │ │ ├── CNN-CatsAndDogs-checkpoint.ipynb │ │ ├── RBM-checkpoint.ipynb │ │ └── SOM-Credit_Card-checkpoint.ipynb │ ├── ANN-GeoDemographicSegmentation │ │ ├── .ipynb_checkpoints │ │ │ └── ANN-KFold-checkpoint.ipynb │ │ ├── ANN-GridSearch.ipynb │ │ ├── ANN-KFold.ipynb │ │ └── ANN-Main.ipynb │ ├── ANN-PowerPlant.ipynb │ ├── ANN_SOM_Hybrid.ipynb │ ├── AutoEncoder.ipynb │ ├── CNN-CatsAndDogs.ipynb │ ├── RBM.ipynb │ ├── RNN-GoogleStockPrice.ipynb │ └── SOM-Credit_Card.ipynb ├── Dimensionality_Reduction │ ├── Kernel_PCA.ipynb │ ├── LDA.ipynb │ └── PCA.ipynb ├── Grad-CAM-Xception.ipynb ├── MNIST.ipynb ├── Model_Selection_Boosting │ ├── Grid_Search.ipynb │ ├── K_Fold_Cross_Validation.ipynb │ └── XG_Boost.ipynb ├── Natural_Language_Processing │ ├── BERT_Sentiment_Analysis.ipynb │ ├── BoW_Sentiment_Analysis.ipynb │ └── model.json ├── Regression │ ├── Best_Model.ipynb │ ├── Decision_Tree_Regression.ipynb │ ├── Multiple_Linear_Regression.ipynb │ ├── Polynomial_Regression.ipynb │ ├── Random_Forest.ipynb │ ├── SVR.ipynb │ └── Simple_Linear_Regression.ipynb ├── Reinforcement_Learning │ ├── Thompson_Sampling.ipynb │ ├── Thompson_Sampling_Slide.png │ ├── UCB_Algorithm_Slide.png │ └── Upper_Confidence_Bound.ipynb ├── mnist_model.h5 └── requirements.txt ├── node-rest-api ├── .gitignore ├── README.md ├── controllers │ └── controller.js ├── data │ └── products.json ├── models │ └── productModel.js ├── package-lock.json ├── package.json ├── server.js └── utils.js ├── opencvtextdetection ├── images │ └── sign.jpg ├── textdetection.py └── textdetectionvideo.py ├── project using html,css and js ├── registration_login_form ├── 136503.jpg ├── cong.css ├── cong.html ├── for.css ├── for.html ├── logn.css ├── logn.html ├── re.css ├── re.html ├── sgnup.css └── sgnup.html ├── responsive food wedsite ├── rohan_files └── Readme.md ├── sinking ship └── sinkingship.cpp ├── sorting algo ├── binary search.c ├── bubble sort.c ├── count sort.c ├── insertion sort.c ├── merge sort.c ├── prime factorization using sieve.c ├── quick sort.c ├── selection sort.c └── sieve of eratosthenes.c ├── stocks-dash ├── app.py ├── assets │ ├── stonk-img.png │ └── styles.css └── model.py ├── string_manipulation └── max_char.py ├── student alcohol consumption(by marpit19) ├── .ipynb_checkpoints │ └── Student Alcohol Consumption-checkpoint.ipynb ├── Student Alcohol Consumption.ipynb ├── student-mat.csv └── student-por.csv ├── sudoko_solver └── sudoko_solver.cpp ├── takaika ├── Hangout ├── README.md └── sort │ ├── bubble_sort.php │ ├── examples.php │ ├── fast_sort.php │ └── merge_sort.php ├── tic-tac-toe-reactjs ├── .DS_Store ├── README.md └── tic-tac-toe │ ├── .gitignore │ ├── README.md │ ├── build │ ├── asset-manifest.json │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ ├── precache-manifest.1b000d2f1f0e86d8ac59204baeb12efe.js │ ├── robots.txt │ ├── service-worker.js │ └── static │ │ ├── css │ │ ├── main.3fa7586b.chunk.css │ │ └── main.3fa7586b.chunk.css.map │ │ └── js │ │ ├── 2.b9926c31.chunk.js │ │ ├── 2.b9926c31.chunk.js.LICENSE.txt │ │ ├── 2.b9926c31.chunk.js.map │ │ ├── main.d8dd475c.chunk.js │ │ ├── main.d8dd475c.chunk.js.map │ │ ├── runtime-main.43a7c523.js │ │ └── runtime-main.43a7c523.js.map │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── index.css │ └── index.js ├── vivek sharma └── RockPaperScissor.py └── words.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/1.png -------------------------------------------------------------------------------- /1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/1.svg -------------------------------------------------------------------------------- /2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/2.png -------------------------------------------------------------------------------- /3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/3.png -------------------------------------------------------------------------------- /4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/4.png -------------------------------------------------------------------------------- /5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/5.png -------------------------------------------------------------------------------- /6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/6.png -------------------------------------------------------------------------------- /Adhiraj's files/Data Science Basics/01-Choropleth Maps.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/Data Science Basics/01-Choropleth Maps.ipynb -------------------------------------------------------------------------------- /Adhiraj's files/Data Science Basics/01-Distribution Plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/Data Science Basics/01-Distribution Plots.ipynb -------------------------------------------------------------------------------- /Adhiraj's files/Data Science Basics/01-Plotly and Cufflinks.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/Data Science Basics/01-Plotly and Cufflinks.ipynb -------------------------------------------------------------------------------- /Adhiraj's files/Data Science Basics/02-Categorical Plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/Data Science Basics/02-Categorical Plots.ipynb -------------------------------------------------------------------------------- /Adhiraj's files/Data Science Basics/02-Series.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/Data Science Basics/02-Series.ipynb -------------------------------------------------------------------------------- /Adhiraj's files/Data Science Basics/03-DataFrames.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/Data Science Basics/03-DataFrames.ipynb -------------------------------------------------------------------------------- /Adhiraj's files/Data Science Basics/03-Matrix Plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/Data Science Basics/03-Matrix Plots.ipynb -------------------------------------------------------------------------------- /Adhiraj's files/Data Science Basics/04-Grids.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/Data Science Basics/04-Grids.ipynb -------------------------------------------------------------------------------- /Adhiraj's files/Data Science Basics/04-Missing Data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/Data Science Basics/04-Missing Data.ipynb -------------------------------------------------------------------------------- /Adhiraj's files/Data Science Basics/05-Groupby.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/Data Science Basics/05-Groupby.ipynb -------------------------------------------------------------------------------- /Adhiraj's files/Data Science Basics/05-Regression Plots.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/Data Science Basics/05-Regression Plots.ipynb -------------------------------------------------------------------------------- /Adhiraj's files/Data Science Basics/06-Style and Color.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/Data Science Basics/06-Style and Color.ipynb -------------------------------------------------------------------------------- /Adhiraj's files/Data Science Basics/07-Operations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/Data Science Basics/07-Operations.ipynb -------------------------------------------------------------------------------- /Adhiraj's files/Data Science Basics/08-Data Input and Output.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/Data Science Basics/08-Data Input and Output.ipynb -------------------------------------------------------------------------------- /Adhiraj's files/House Price Predictor/submission.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/House Price Predictor/submission.csv -------------------------------------------------------------------------------- /Adhiraj's files/House Price Predictor/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/House Price Predictor/test.csv -------------------------------------------------------------------------------- /Adhiraj's files/House Price Predictor/train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Adhiraj's files/House Price Predictor/train.csv -------------------------------------------------------------------------------- /Aditya's Files/HORSES.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Aditya's Files/HORSES.cpp -------------------------------------------------------------------------------- /Aditya's Files/HelloWorld.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Aditya's Files/HelloWorld.cpp -------------------------------------------------------------------------------- /Aditya's Files/InfiniteRunner/Config/DefaultEditor.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Aditya's Files/InfiniteRunner/Config/DefaultEngine.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Aditya's Files/InfiniteRunner/Config/DefaultEngine.ini -------------------------------------------------------------------------------- /Aditya's Files/InfiniteRunner/Config/DefaultGame.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Aditya's Files/InfiniteRunner/Config/DefaultGame.ini -------------------------------------------------------------------------------- /Aditya's Files/InfiniteRunner/Config/DefaultInput.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Aditya's Files/InfiniteRunner/Config/DefaultInput.ini -------------------------------------------------------------------------------- /Aditya's Files/InfiniteRunner/Content/Blueprints/BP_Saw.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Aditya's Files/InfiniteRunner/Content/Blueprints/BP_Saw.uasset -------------------------------------------------------------------------------- /Aditya's Files/InfiniteRunner/Content/Blueprints/BP_Spikes.uasset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Aditya's Files/InfiniteRunner/Content/Blueprints/BP_Spikes.uasset -------------------------------------------------------------------------------- /Aditya's Files/InfiniteRunner/Content/Maps/Gameplay.umap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Aditya's Files/InfiniteRunner/Content/Maps/Gameplay.umap -------------------------------------------------------------------------------- /Aditya's Files/InfiniteRunner/InfiniteRunner.uproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Aditya's Files/InfiniteRunner/InfiniteRunner.uproject -------------------------------------------------------------------------------- /Aditya's Files/JOHNY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Aditya's Files/JOHNY.cpp -------------------------------------------------------------------------------- /Aditya's Files/UKROBOT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Aditya's Files/UKROBOT.cpp -------------------------------------------------------------------------------- /Akshay000000 files/A - Frog 1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Akshay000000 files/A - Frog 1.cxx -------------------------------------------------------------------------------- /Akshay000000 files/ArrayInReverseorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Akshay000000 files/ArrayInReverseorder.cpp -------------------------------------------------------------------------------- /Akshay000000 files/Frog 2.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Akshay000000 files/Frog 2.cxx -------------------------------------------------------------------------------- /Akshay000000 files/Knapsack1.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Akshay000000 files/Knapsack1.cxx -------------------------------------------------------------------------------- /Algorithms/MergeSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Algorithms/MergeSort.py -------------------------------------------------------------------------------- /Algorithms/SelectionSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Algorithms/SelectionSort.py -------------------------------------------------------------------------------- /Algorithms/binarySearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Algorithms/binarySearch.js -------------------------------------------------------------------------------- /Algorithms/bubbleSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Algorithms/bubbleSort.js -------------------------------------------------------------------------------- /Algorithms/first_n_primes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Algorithms/first_n_primes.c -------------------------------------------------------------------------------- /Algorithms/insertion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Algorithms/insertion.js -------------------------------------------------------------------------------- /Algorithms/linearSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Algorithms/linearSearch.js -------------------------------------------------------------------------------- /Algorithms/mergeSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Algorithms/mergeSort.js -------------------------------------------------------------------------------- /Algorithms/quickSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Algorithms/quickSort.js -------------------------------------------------------------------------------- /Algorithms/selectionSort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Algorithms/selectionSort.js -------------------------------------------------------------------------------- /Ashray's files/Secrets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Ashray's files/Secrets/.DS_Store -------------------------------------------------------------------------------- /Ashray's files/Secrets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Ashray's files/Secrets/.gitignore -------------------------------------------------------------------------------- /Ashray's files/Secrets/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Ashray's files/Secrets/app.js -------------------------------------------------------------------------------- /Ashray's files/Secrets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Ashray's files/Secrets/package-lock.json -------------------------------------------------------------------------------- /Ashray's files/Secrets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Ashray's files/Secrets/package.json -------------------------------------------------------------------------------- /Ashray's files/Secrets/public/css/bootstrap-social.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Ashray's files/Secrets/public/css/bootstrap-social.css -------------------------------------------------------------------------------- /Ashray's files/Secrets/public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Ashray's files/Secrets/public/css/styles.css -------------------------------------------------------------------------------- /Ashray's files/Secrets/views/home.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Ashray's files/Secrets/views/home.ejs -------------------------------------------------------------------------------- /Ashray's files/Secrets/views/login.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Ashray's files/Secrets/views/login.ejs -------------------------------------------------------------------------------- /Ashray's files/Secrets/views/partials/footer.ejs: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Ashray's files/Secrets/views/partials/header.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Ashray's files/Secrets/views/partials/header.ejs -------------------------------------------------------------------------------- /Ashray's files/Secrets/views/register.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Ashray's files/Secrets/views/register.ejs -------------------------------------------------------------------------------- /Ashray's files/Secrets/views/secrets.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Ashray's files/Secrets/views/secrets.ejs -------------------------------------------------------------------------------- /Ashray's files/Secrets/views/submit.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Ashray's files/Secrets/views/submit.ejs -------------------------------------------------------------------------------- /Backtracking/Flood_Fill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Backtracking/Flood_Fill.cpp -------------------------------------------------------------------------------- /Backtracking/Maze.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Backtracking/Maze.cpp -------------------------------------------------------------------------------- /Backtracking/N_Queens.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Backtracking/N_Queens.cpp -------------------------------------------------------------------------------- /Bank Loan Modelling/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Bank Loan Modelling/.gitattributes -------------------------------------------------------------------------------- /Bank Loan Modelling/Bank_Loan_Modelling_SR.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Bank Loan Modelling/Bank_Loan_Modelling_SR.ipynb -------------------------------------------------------------------------------- /Bank Loan Modelling/Deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Bank Loan Modelling/Deployment/README.md -------------------------------------------------------------------------------- /Bank Loan Modelling/Deployment/Requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | numpy 3 | pandas 4 | sklearn -------------------------------------------------------------------------------- /Bank Loan Modelling/Deployment/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Bank Loan Modelling/Deployment/app.py -------------------------------------------------------------------------------- /Bank Loan Modelling/Deployment/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Bank Loan Modelling/Deployment/demo.gif -------------------------------------------------------------------------------- /Bank Loan Modelling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Bank Loan Modelling/README.md -------------------------------------------------------------------------------- /BioInformatica/Transcricao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/BioInformatica/Transcricao.py -------------------------------------------------------------------------------- /Boston-Housing-Price/Boston House Prices Linear Regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Boston-Housing-Price/Boston House Prices Linear Regression.ipynb -------------------------------------------------------------------------------- /Boston-Housing-Price/Deployment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Boston-Housing-Price/Deployment/README.md -------------------------------------------------------------------------------- /Boston-Housing-Price/Deployment/Requirements.txt: -------------------------------------------------------------------------------- 1 | streamlit 2 | numpy 3 | pandas 4 | sklearn -------------------------------------------------------------------------------- /Boston-Housing-Price/Deployment/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Boston-Housing-Price/Deployment/app.py -------------------------------------------------------------------------------- /Boston-Housing-Price/Media/DecisionTree.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Boston-Housing-Price/Media/DecisionTree.PNG -------------------------------------------------------------------------------- /Boston-Housing-Price/Media/LinearRegression.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Boston-Housing-Price/Media/LinearRegression.PNG -------------------------------------------------------------------------------- /Boston-Housing-Price/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Boston-Housing-Price/README.md -------------------------------------------------------------------------------- /CARTOONING-AN-IMAGE-USING-OPENCV-master/Cartoon_BIRD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/CARTOONING-AN-IMAGE-USING-OPENCV-master/Cartoon_BIRD.png -------------------------------------------------------------------------------- /CARTOONING-AN-IMAGE-USING-OPENCV-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/CARTOONING-AN-IMAGE-USING-OPENCV-master/README.md -------------------------------------------------------------------------------- /Calculator/Calculator in C.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Calculator/Calculator in C.c -------------------------------------------------------------------------------- /Calculator/Calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Calculator/Calculator.py -------------------------------------------------------------------------------- /Calculator/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Calculator/background.jpg -------------------------------------------------------------------------------- /Calculator/calcualator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Calculator/calcualator.css -------------------------------------------------------------------------------- /Calculator/calculator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Calculator/calculator -------------------------------------------------------------------------------- /Calculator/calculator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Calculator/calculator.html -------------------------------------------------------------------------------- /Calculator/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Calculator/calculator.py -------------------------------------------------------------------------------- /Calculator/calcuscript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Calculator/calcuscript.js -------------------------------------------------------------------------------- /Calculator/chappie.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Calculator/chappie.jpg -------------------------------------------------------------------------------- /Calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Calculator/index.html -------------------------------------------------------------------------------- /Colored_console_in_cpp/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Colored_console_in_cpp/main.cpp -------------------------------------------------------------------------------- /ColorfulSpiral/spiral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/ColorfulSpiral/spiral.py -------------------------------------------------------------------------------- /Criptografia/Descriptar_e_encriptar_dados.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Criptografia/Descriptar_e_encriptar_dados.py -------------------------------------------------------------------------------- /Cryptography/AES_Encryption_Decryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Cryptography/AES_Encryption_Decryption.py -------------------------------------------------------------------------------- /DAA_Algo/DnC(MinNMax).c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DAA_Algo/DnC(MinNMax).c -------------------------------------------------------------------------------- /DAA_Algo/DnC(MinNMax).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DAA_Algo/DnC(MinNMax).cpp -------------------------------------------------------------------------------- /DAA_Algo/Knapsack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DAA_Algo/Knapsack.cpp -------------------------------------------------------------------------------- /DAA_Algo/MergeSort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DAA_Algo/MergeSort.c -------------------------------------------------------------------------------- /DAA_Algo/QuickSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DAA_Algo/QuickSort.cpp -------------------------------------------------------------------------------- /Deepak Sharma/A - A Prize No One Can Win.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Deepak Sharma/A - A Prize No One Can Win.cpp -------------------------------------------------------------------------------- /Deepak Sharma/A. Equalize Prices Again.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Deepak Sharma/A. Equalize Prices Again.cpp -------------------------------------------------------------------------------- /Deepak Sharma/A. Mahmoud and Longest Uncommon Subsequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Deepak Sharma/A. Mahmoud and Longest Uncommon Subsequence.cpp -------------------------------------------------------------------------------- /Deepak Sharma/A. Sum of Round Numbers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Deepak Sharma/A. Sum of Round Numbers.cpp -------------------------------------------------------------------------------- /Deepak Sharma/A. Two Substrings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Deepak Sharma/A. Two Substrings.cpp -------------------------------------------------------------------------------- /Deepak Sharma/Agressive_Cow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Deepak Sharma/Agressive_Cow.cpp -------------------------------------------------------------------------------- /Deepak Sharma/B. Binary Period.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Deepak Sharma/B. Binary Period.cpp -------------------------------------------------------------------------------- /Deepak Sharma/B. Burglar and Matches.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Deepak Sharma/B. Burglar and Matches.cpp -------------------------------------------------------------------------------- /Deepak Sharma/B. Caisa and Pylons.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Deepak Sharma/B. Caisa and Pylons.cpp -------------------------------------------------------------------------------- /Deepak Sharma/B. Dreamoon Likes Permutations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Deepak Sharma/B. Dreamoon Likes Permutations.cpp -------------------------------------------------------------------------------- /Deepak Sharma/C1. Skyscrapers (easy version).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Deepak Sharma/C1. Skyscrapers (easy version).cpp -------------------------------------------------------------------------------- /DialogBox/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/CHANGELOG.md -------------------------------------------------------------------------------- /DialogBox/assets/flare/error.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/assets/flare/error.flr -------------------------------------------------------------------------------- /DialogBox/assets/flare/error_without_loop.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/assets/flare/error_without_loop.flr -------------------------------------------------------------------------------- /DialogBox/assets/flare/info.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/assets/flare/info.flr -------------------------------------------------------------------------------- /DialogBox/assets/flare/info_without_loop.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/assets/flare/info_without_loop.flr -------------------------------------------------------------------------------- /DialogBox/assets/flare/succes.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/assets/flare/succes.flr -------------------------------------------------------------------------------- /DialogBox/assets/flare/succes_without_loop.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/assets/flare/succes_without_loop.flr -------------------------------------------------------------------------------- /DialogBox/assets/flare/warning.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/assets/flare/warning.flr -------------------------------------------------------------------------------- /DialogBox/assets/flare/warning_without_loop.flr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/assets/flare/warning_without_loop.flr -------------------------------------------------------------------------------- /DialogBox/doc/gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/doc/gif.gif -------------------------------------------------------------------------------- /DialogBox/example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/README.md -------------------------------------------------------------------------------- /DialogBox/example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/android/app/build.gradle -------------------------------------------------------------------------------- /DialogBox/example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /DialogBox/example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /DialogBox/example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /DialogBox/example/android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/android/app/src/profile/AndroidManifest.xml -------------------------------------------------------------------------------- /DialogBox/example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/android/build.gradle -------------------------------------------------------------------------------- /DialogBox/example/android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx1536M 2 | 3 | android.enableR8=true 4 | -------------------------------------------------------------------------------- /DialogBox/example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /DialogBox/example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/android/settings.gradle -------------------------------------------------------------------------------- /DialogBox/example/ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/ios/Flutter/AppFrameworkInfo.plist -------------------------------------------------------------------------------- /DialogBox/example/ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /DialogBox/example/ios/Flutter/Flutter.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/ios/Flutter/Flutter.podspec -------------------------------------------------------------------------------- /DialogBox/example/ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /DialogBox/example/ios/Runner.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/ios/Runner.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DialogBox/example/ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/ios/Runner.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DialogBox/example/ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/ios/Runner/AppDelegate.swift -------------------------------------------------------------------------------- /DialogBox/example/ios/Runner/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/ios/Runner/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DialogBox/example/ios/Runner/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/ios/Runner/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DialogBox/example/ios/Runner/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/ios/Runner/Info.plist -------------------------------------------------------------------------------- /DialogBox/example/ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" -------------------------------------------------------------------------------- /DialogBox/example/lib/main.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/lib/main.dart -------------------------------------------------------------------------------- /DialogBox/example/lib/routes.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/lib/routes.dart -------------------------------------------------------------------------------- /DialogBox/example/lib/test_page.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/lib/test_page.dart -------------------------------------------------------------------------------- /DialogBox/example/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/pubspec.lock -------------------------------------------------------------------------------- /DialogBox/example/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/pubspec.yaml -------------------------------------------------------------------------------- /DialogBox/example/test/widget_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/example/test/widget_test.dart -------------------------------------------------------------------------------- /DialogBox/lib/awesome_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/lib/awesome_dialog.dart -------------------------------------------------------------------------------- /DialogBox/lib/src/animated_button.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/lib/src/animated_button.dart -------------------------------------------------------------------------------- /DialogBox/lib/src/anims/anims.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/lib/src/anims/anims.dart -------------------------------------------------------------------------------- /DialogBox/lib/src/anims/flare_header.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/lib/src/anims/flare_header.dart -------------------------------------------------------------------------------- /DialogBox/lib/src/vertical_stack_header_dialog.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/lib/src/vertical_stack_header_dialog.dart -------------------------------------------------------------------------------- /DialogBox/pubspec.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/pubspec.lock -------------------------------------------------------------------------------- /DialogBox/pubspec.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/pubspec.yaml -------------------------------------------------------------------------------- /DialogBox/test/fancy_dialog_test.dart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DialogBox/test/fancy_dialog_test.dart -------------------------------------------------------------------------------- /Dice Rolling Simulator by Muhammad Bilal/Dice Rolling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Dice Rolling Simulator by Muhammad Bilal/Dice Rolling.py -------------------------------------------------------------------------------- /Dice Rolling Simulator by Muhammad Bilal/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Dice Rolling Simulator by Muhammad Bilal/README.txt -------------------------------------------------------------------------------- /Dice Rolling Simulator by Muhammad Bilal/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Dice Rolling Simulator by Muhammad Bilal/code.py -------------------------------------------------------------------------------- /Dice Rolling Simulator by Muhammad Bilal/code.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Dice Rolling Simulator by Muhammad Bilal/code.spec -------------------------------------------------------------------------------- /Dice Rolling Simulator by Muhammad Bilal/dist/Dice Roller.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Dice Rolling Simulator by Muhammad Bilal/dist/Dice Roller.exe -------------------------------------------------------------------------------- /DrVictor's Files/guessinggame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/DrVictor's Files/guessinggame.py -------------------------------------------------------------------------------- /Drum Kit/images/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/images/crash.png -------------------------------------------------------------------------------- /Drum Kit/images/drumstick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/images/drumstick.png -------------------------------------------------------------------------------- /Drum Kit/images/kick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/images/kick.png -------------------------------------------------------------------------------- /Drum Kit/images/snare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/images/snare.png -------------------------------------------------------------------------------- /Drum Kit/images/tom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/images/tom1.png -------------------------------------------------------------------------------- /Drum Kit/images/tom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/images/tom2.png -------------------------------------------------------------------------------- /Drum Kit/images/tom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/images/tom3.png -------------------------------------------------------------------------------- /Drum Kit/images/tom4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/images/tom4.png -------------------------------------------------------------------------------- /Drum Kit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/index.html -------------------------------------------------------------------------------- /Drum Kit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/index.js -------------------------------------------------------------------------------- /Drum Kit/sounds/crash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/sounds/crash.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/kick-bass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/sounds/kick-bass.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/snare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/sounds/snare.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/tom-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/sounds/tom-1.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/tom-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/sounds/tom-2.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/tom-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/sounds/tom-3.mp3 -------------------------------------------------------------------------------- /Drum Kit/sounds/tom-4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/sounds/tom-4.mp3 -------------------------------------------------------------------------------- /Drum Kit/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Drum Kit/styles.css -------------------------------------------------------------------------------- /Electron Music Player/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Electron Music Player/Readme.md -------------------------------------------------------------------------------- /Electron Music Player/enounce.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Electron Music Player/enounce.ico -------------------------------------------------------------------------------- /Electron Music Player/enounce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Electron Music Player/enounce.js -------------------------------------------------------------------------------- /Electron Music Player/html/enounce.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Electron Music Player/html/enounce.html -------------------------------------------------------------------------------- /Electron Music Player/html/gif/main.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Electron Music Player/html/gif/main.gif -------------------------------------------------------------------------------- /Electron Music Player/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Electron Music Player/html/index.html -------------------------------------------------------------------------------- /Electron Music Player/html/scripts/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Electron Music Player/html/scripts/player.js -------------------------------------------------------------------------------- /Electron Music Player/html/scripts/youtube.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Electron Music Player/html/scripts/youtube.js -------------------------------------------------------------------------------- /Electron Music Player/html/styles/basic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Electron Music Player/html/styles/basic.css -------------------------------------------------------------------------------- /Electron Music Player/html/styles/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Electron Music Player/html/styles/bootstrap.css -------------------------------------------------------------------------------- /Electron Music Player/html/styles/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Electron Music Player/html/styles/bootstrap.css.map -------------------------------------------------------------------------------- /Electron Music Player/html/youtube.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Electron Music Player/html/youtube.html -------------------------------------------------------------------------------- /Electron Music Player/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Electron Music Player/package-lock.json -------------------------------------------------------------------------------- /Electron Music Player/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Electron Music Player/package.json -------------------------------------------------------------------------------- /Estrutura de dados/C/Fila/FilaDinamica.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Fila/FilaDinamica.c -------------------------------------------------------------------------------- /Estrutura de dados/C/Fila/FilaDinamica.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Fila/FilaDinamica.h -------------------------------------------------------------------------------- /Estrutura de dados/C/Fila/FilaDuplamenteEncadeada.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Fila/FilaDuplamenteEncadeada.c -------------------------------------------------------------------------------- /Estrutura de dados/C/Fila/FilaDuplamenteEncadeada.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Fila/FilaDuplamenteEncadeada.h -------------------------------------------------------------------------------- /Estrutura de dados/C/Lista/ListaCircular.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Lista/ListaCircular.c -------------------------------------------------------------------------------- /Estrutura de dados/C/Lista/ListaDinamica.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Lista/ListaDinamica.c -------------------------------------------------------------------------------- /Estrutura de dados/C/Lista/ListaDinamica.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Lista/ListaDinamica.h -------------------------------------------------------------------------------- /Estrutura de dados/C/Lista/ListaDuplamenteEncadeada.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Lista/ListaDuplamenteEncadeada.c -------------------------------------------------------------------------------- /Estrutura de dados/C/Lista/ListaDuplamenteEncadeada.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Lista/ListaDuplamenteEncadeada.h -------------------------------------------------------------------------------- /Estrutura de dados/C/Lista/ListaEstatica.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Lista/ListaEstatica.c -------------------------------------------------------------------------------- /Estrutura de dados/C/Pilha/PilhaDinamica.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Pilha/PilhaDinamica.c -------------------------------------------------------------------------------- /Estrutura de dados/C/Pilha/PilhaDinamica.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Pilha/PilhaDinamica.h -------------------------------------------------------------------------------- /Estrutura de dados/C/Pilha/PilhaEstatica.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Pilha/PilhaEstatica.c -------------------------------------------------------------------------------- /Estrutura de dados/C/Tabela de Simbolos/TabelaDeSimbolos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Tabela de Simbolos/TabelaDeSimbolos.c -------------------------------------------------------------------------------- /Estrutura de dados/C/Tabela de Simbolos/TabelaDeSimbolos.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Tabela de Simbolos/TabelaDeSimbolos.exe -------------------------------------------------------------------------------- /Estrutura de dados/C/Tabela de Simbolos/TabelaDeSimbolos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/C/Tabela de Simbolos/TabelaDeSimbolos.h -------------------------------------------------------------------------------- /Estrutura de dados/Java/Fila de Prioridade/Cliente.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Fila de Prioridade/Cliente.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Fila de Prioridade/Fila.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Fila de Prioridade/Fila.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Fila de Prioridade/Fila_Cliente.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Fila de Prioridade/Fila_Cliente.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Fila de Prioridade/No.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Fila de Prioridade/No.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Fila/Cliente.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Fila/Cliente.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Fila/Fila.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Fila/Fila.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Fila/Fila_Cliente.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Fila/Fila_Cliente.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Fila/No.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Fila/No.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Lista Encadeada/BibliotecaMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Lista Encadeada/BibliotecaMain.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Lista Encadeada/Book.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Lista Encadeada/Book.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Lista Encadeada/Library.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Lista Encadeada/Library.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Pilha Dinamica/Biblioteca.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Pilha Dinamica/Biblioteca.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Pilha Dinamica/Livro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Pilha Dinamica/Livro.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Pilha Dinamica/MainPrincipal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Pilha Dinamica/MainPrincipal.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Pilha Dinamica/No.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Pilha Dinamica/No.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Pilha Dinamica_2/People.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Pilha Dinamica_2/People.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Pilha Dinamica_2/Pessoa.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Pilha Dinamica_2/Pessoa.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Pilha Dinamica_2/Stack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Pilha Dinamica_2/Stack.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Pilha Estatica/BibliotecaMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Pilha Estatica/BibliotecaMain.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Pilha Estatica/LibraryStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Pilha Estatica/LibraryStack.java -------------------------------------------------------------------------------- /Estrutura de dados/Java/Pilha Estatica/Livro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Estrutura de dados/Java/Pilha Estatica/Livro.java -------------------------------------------------------------------------------- /Fixer.txt: -------------------------------------------------------------------------------- 1 | FIXING ISSUE NOW 2 | -------------------------------------------------------------------------------- /FormatMoney/FormatMoney.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/FormatMoney/FormatMoney.js -------------------------------------------------------------------------------- /Fruits Project/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Fruits Project/app.js -------------------------------------------------------------------------------- /Fruits Project/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Fruits Project/package-lock.json -------------------------------------------------------------------------------- /Fruits Project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Fruits Project/package.json -------------------------------------------------------------------------------- /Go/BubbleSort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Go/BubbleSort.go -------------------------------------------------------------------------------- /Go/CombSort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Go/CombSort.go -------------------------------------------------------------------------------- /Go/MergeSort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Go/MergeSort.go -------------------------------------------------------------------------------- /Go/armstrong_number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Go/armstrong_number.go -------------------------------------------------------------------------------- /Go/caluclate_bill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Go/caluclate_bill.go -------------------------------------------------------------------------------- /Go/factorial.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Go/factorial.go -------------------------------------------------------------------------------- /Go/fibonacci_series.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Go/fibonacci_series.go -------------------------------------------------------------------------------- /Go/pascal_triangle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Go/pascal_triangle.go -------------------------------------------------------------------------------- /Go/simple_calculator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Go/simple_calculator.go -------------------------------------------------------------------------------- /Google Hangouts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Google Hangouts -------------------------------------------------------------------------------- /Greedy Best First Search/GBFS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Greedy Best First Search/GBFS.py -------------------------------------------------------------------------------- /Hackerrank Solution Snippets/Alphabet Rangoli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hackerrank Solution Snippets/Alphabet Rangoli.py -------------------------------------------------------------------------------- /Hackerrank Solution Snippets/Alternating_Characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hackerrank Solution Snippets/Alternating_Characters.py -------------------------------------------------------------------------------- /Hackerrank Solution Snippets/Capitalize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hackerrank Solution Snippets/Capitalize.py -------------------------------------------------------------------------------- /Hackerrank Solution Snippets/Count_Triplets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hackerrank Solution Snippets/Count_Triplets.py -------------------------------------------------------------------------------- /Hackerrank Solution Snippets/Designer Door Mat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hackerrank Solution Snippets/Designer Door Mat.py -------------------------------------------------------------------------------- /Hackerrank Solution Snippets/Find a string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hackerrank Solution Snippets/Find a string.py -------------------------------------------------------------------------------- /Hackerrank Solution Snippets/Find the Runner-Up Score!.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hackerrank Solution Snippets/Find the Runner-Up Score!.py -------------------------------------------------------------------------------- /Hackerrank Solution Snippets/Finding the eprcentage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hackerrank Solution Snippets/Finding the eprcentage.py -------------------------------------------------------------------------------- /Hackerrank Solution Snippets/Introduction to Sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hackerrank Solution Snippets/Introduction to Sets.py -------------------------------------------------------------------------------- /Hackerrank Solution Snippets/Java 1D Array (Part 2).java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hackerrank Solution Snippets/Java 1D Array (Part 2).java -------------------------------------------------------------------------------- /Hackerrank Solution Snippets/Java BigDecimal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hackerrank Solution Snippets/Java BigDecimal.java -------------------------------------------------------------------------------- /Hackerrank Solution Snippets/Java Currency Formatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hackerrank Solution Snippets/Java Currency Formatter.java -------------------------------------------------------------------------------- /Hackerrank Solution Snippets/Java Output Formatting.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hackerrank Solution Snippets/Java Output Formatting.java -------------------------------------------------------------------------------- /Hackerrank Solution Snippets/Java Regex 2 - Duplicate Words.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hackerrank Solution Snippets/Java Regex 2 - Duplicate Words.java -------------------------------------------------------------------------------- /Hacktoberfest2020/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hacktoberfest2020/.DS_Store -------------------------------------------------------------------------------- /Hacktoberfest2020/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hacktoberfest2020/index.html -------------------------------------------------------------------------------- /Hacktoberfest2020/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Hacktoberfest2020/styles.css -------------------------------------------------------------------------------- /HandwrittenDigitrecognitionWebApp/MEDIA/Demo-Draw.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/HandwrittenDigitrecognitionWebApp/MEDIA/Demo-Draw.gif -------------------------------------------------------------------------------- /HandwrittenDigitrecognitionWebApp/MEDIA/Upload-Via-Link.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/HandwrittenDigitrecognitionWebApp/MEDIA/Upload-Via-Link.gif -------------------------------------------------------------------------------- /HandwrittenDigitrecognitionWebApp/MEDIA/demo-device.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/HandwrittenDigitrecognitionWebApp/MEDIA/demo-device.gif -------------------------------------------------------------------------------- /HandwrittenDigitrecognitionWebApp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/HandwrittenDigitrecognitionWebApp/README.md -------------------------------------------------------------------------------- /HandwrittenDigitrecognitionWebApp/Requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/HandwrittenDigitrecognitionWebApp/Requirements.txt -------------------------------------------------------------------------------- /HandwrittenDigitrecognitionWebApp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/HandwrittenDigitrecognitionWebApp/app.py -------------------------------------------------------------------------------- /Harry Potter's Invisible Cloak/Harry.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Harry Potter's Invisible Cloak/Harry.ipynb -------------------------------------------------------------------------------- /Harshit's files/MaxPP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Harshit's files/MaxPP.cpp -------------------------------------------------------------------------------- /Harshit's files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Harshit's files/README.md -------------------------------------------------------------------------------- /Harshit's files/stockpred/StockPredLSTM1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Harshit's files/stockpred/StockPredLSTM1.ipynb -------------------------------------------------------------------------------- /Harshit's files/stockpred/TSLA.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Harshit's files/stockpred/TSLA.csv -------------------------------------------------------------------------------- /Himanshu4642's files/0-1 Knapsack Memoization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Himanshu4642's files/0-1 Knapsack Memoization.cpp -------------------------------------------------------------------------------- /Himanshu4642's files/0-1 Knapsack Recursive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Himanshu4642's files/0-1 Knapsack Recursive.cpp -------------------------------------------------------------------------------- /Himanshu4642's files/0-1 Knapsack Top-Down.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Himanshu4642's files/0-1 Knapsack Top-Down.cpp -------------------------------------------------------------------------------- /Himanshu4642's files/Count of Subsets with given diff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Himanshu4642's files/Count of Subsets with given diff.cpp -------------------------------------------------------------------------------- /Himanshu4642's files/Count of Subsets with given sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Himanshu4642's files/Count of Subsets with given sum.cpp -------------------------------------------------------------------------------- /Himanshu4642's files/Equal Sum Partition.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Himanshu4642's files/Equal Sum Partition.cpp -------------------------------------------------------------------------------- /Himanshu4642's files/Minimum Subset Absolute Sum Difference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Himanshu4642's files/Minimum Subset Absolute Sum Difference.cpp -------------------------------------------------------------------------------- /Himanshu4642's files/Subset Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Himanshu4642's files/Subset Sum.cpp -------------------------------------------------------------------------------- /Himanshu4642's files/Target Sum.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Himanshu4642's files/Target Sum.cpp -------------------------------------------------------------------------------- /House Price Predictor/House-price-predictor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/House Price Predictor/House-price-predictor.ipynb -------------------------------------------------------------------------------- /IPL Analysis & Visualizations/Datasets/matches.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/IPL Analysis & Visualizations/Datasets/matches.csv -------------------------------------------------------------------------------- /IPL Analysis & Visualizations/IPL - Visualizations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/IPL Analysis & Visualizations/IPL - Visualizations.ipynb -------------------------------------------------------------------------------- /Important Pandas Dataframe Commands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Important Pandas Dataframe Commands/README.md -------------------------------------------------------------------------------- /Important Pandas Dataframe Commands/nba.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Important Pandas Dataframe Commands/nba.csv -------------------------------------------------------------------------------- /Insertion_deletion_LinkedList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Insertion_deletion_LinkedList.c -------------------------------------------------------------------------------- /Interview Based/Anagram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Anagram.py -------------------------------------------------------------------------------- /Interview Based/CamelCase Pattern Matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/CamelCase Pattern Matching.py -------------------------------------------------------------------------------- /Interview Based/Chocolate Distribution Problem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Chocolate Distribution Problem.py -------------------------------------------------------------------------------- /Interview Based/Convert array into Zig-Zag fashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Convert array into Zig-Zag fashion.py -------------------------------------------------------------------------------- /Interview Based/Count the triplets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Count the triplets.py -------------------------------------------------------------------------------- /Interview Based/Equilibrium Point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Equilibrium Point.py -------------------------------------------------------------------------------- /Interview Based/Form a palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Form a palindrome.py -------------------------------------------------------------------------------- /Interview Based/Implement Atoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Implement Atoi.py -------------------------------------------------------------------------------- /Interview Based/Implement strstr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Implement strstr.py -------------------------------------------------------------------------------- /Interview Based/Inversion of array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Inversion of array.py -------------------------------------------------------------------------------- /Interview Based/Kadane's Algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Kadane's Algorithm.py -------------------------------------------------------------------------------- /Interview Based/Kth smallest element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Kth smallest element.py -------------------------------------------------------------------------------- /Interview Based/Largest Number formed from an Array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Largest Number formed from an Array.py -------------------------------------------------------------------------------- /Interview Based/Last index of One.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Last index of One.py -------------------------------------------------------------------------------- /Interview Based/Leader_in_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Leader_in_array.py -------------------------------------------------------------------------------- /Interview Based/Longest Palindrome in a String.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Longest Palindrome in a String.py -------------------------------------------------------------------------------- /Interview Based/Merge Without Extra Space.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Merge Without Extra Space.py -------------------------------------------------------------------------------- /Interview Based/Minimum Platforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Minimum Platforms.py -------------------------------------------------------------------------------- /Interview Based/Missing number in array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Missing number in array.py -------------------------------------------------------------------------------- /Interview Based/Most frequent word in an array of strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Most frequent word in an array of strings.py -------------------------------------------------------------------------------- /Interview Based/Non Repeating Character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Non Repeating Character.py -------------------------------------------------------------------------------- /Interview Based/Number of pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Number of pairs.py -------------------------------------------------------------------------------- /Interview Based/Organiser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Organiser.py -------------------------------------------------------------------------------- /Interview Based/Pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Pairs.py -------------------------------------------------------------------------------- /Interview Based/Permutations of a given string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Permutations of a given string.py -------------------------------------------------------------------------------- /Interview Based/Rearrange Array Alternately.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Rearrange Array Alternately.py -------------------------------------------------------------------------------- /Interview Based/Repeated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Repeated.py -------------------------------------------------------------------------------- /Interview Based/Top 4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/Top 4.py -------------------------------------------------------------------------------- /Interview Based/reverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Interview Based/reverse.py -------------------------------------------------------------------------------- /Java Prog/ChecksimilarcharacterStringProgram.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Java Prog/ChecksimilarcharacterStringProgram.java -------------------------------------------------------------------------------- /Java Prog/FindthemiddleofthegivenLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Java Prog/FindthemiddleofthegivenLinkedList.java -------------------------------------------------------------------------------- /Java Prog/PalindromicLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Java Prog/PalindromicLinkedList.java -------------------------------------------------------------------------------- /Java Prog/RemoveDuplicatesfromtheLinkedList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Java Prog/RemoveDuplicatesfromtheLinkedList.java -------------------------------------------------------------------------------- /Java Prog/ReverseString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Java Prog/ReverseString.java -------------------------------------------------------------------------------- /Java Prog/noOfUpperCase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Java Prog/noOfUpperCase.java -------------------------------------------------------------------------------- /Jayvardhan/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Jayvardhan/date.py -------------------------------------------------------------------------------- /Jayvardhan/experiment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Jayvardhan/experiment.py -------------------------------------------------------------------------------- /Jayvardhan/working-mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Jayvardhan/working-mail.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/LICENSE -------------------------------------------------------------------------------- /Leetcode_solutions/141. Linked List Cycle/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Leetcode_solutions/141. Linked List Cycle/Readme.md -------------------------------------------------------------------------------- /Leetcode_solutions/142. Linked List Cycle II/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Leetcode_solutions/142. Linked List Cycle II/Readme.md -------------------------------------------------------------------------------- /Leetcode_solutions/15. 3sum/15.3sum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Leetcode_solutions/15. 3sum/15.3sum.java -------------------------------------------------------------------------------- /Leetcode_solutions/15. 3sum/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Leetcode_solutions/15. 3sum/Readme.md -------------------------------------------------------------------------------- /Leetcode_solutions/442. Find All Duplicates in an Array/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Leetcode_solutions/442. Find All Duplicates in an Array/Readme.md -------------------------------------------------------------------------------- /Linked List ADT/Linked List ADT/linked_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Linked List ADT/Linked List ADT/linked_list -------------------------------------------------------------------------------- /Linked List ADT/Linked List ADT/linked_list.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Linked List ADT/Linked List ADT/linked_list.cpp -------------------------------------------------------------------------------- /Linked List ADT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Linked List ADT/README.md -------------------------------------------------------------------------------- /ML from sratch/distance_between_2_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/ML from sratch/distance_between_2_points.py -------------------------------------------------------------------------------- /ML from sratch/heart_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/ML from sratch/heart_predict.py -------------------------------------------------------------------------------- /ML from sratch/linear_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/ML from sratch/linear_regression.py -------------------------------------------------------------------------------- /ML from sratch/logistic_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/ML from sratch/logistic_regression.py -------------------------------------------------------------------------------- /Machine Learning/Airplane Severity.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Machine Learning/Airplane Severity.ipynb -------------------------------------------------------------------------------- /Machine Learning/AirplaneAccident.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Machine Learning/AirplaneAccident.csv -------------------------------------------------------------------------------- /Machine Learning/Perceptron.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Machine Learning/Perceptron.ipynb -------------------------------------------------------------------------------- /Machine Learning/README.md: -------------------------------------------------------------------------------- 1 | Machine Learning Model to find Severity of Airplane Accidents. 2 | -------------------------------------------------------------------------------- /Mail-with-Python/htmlMail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Mail-with-Python/htmlMail.py -------------------------------------------------------------------------------- /Mail-with-Python/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Mail-with-Python/index.html -------------------------------------------------------------------------------- /Moving Block Game/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /Moving Block Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Moving Block Game/index.html -------------------------------------------------------------------------------- /Moving Block Game/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Moving Block Game/package-lock.json -------------------------------------------------------------------------------- /Moving Block Game/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Moving Block Game/package.json -------------------------------------------------------------------------------- /Moving Block Game/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Moving Block Game/scripts.js -------------------------------------------------------------------------------- /Moving Object Detection/Moving_Object_Detection_in_Videos.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Moving Object Detection/Moving_Object_Detection_in_Videos.ipynb -------------------------------------------------------------------------------- /Moving Object Detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Moving Object Detection/README.md -------------------------------------------------------------------------------- /Multisource bfs/Codeforces - Christmas Trees.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Multisource bfs/Codeforces - Christmas Trees.cpp -------------------------------------------------------------------------------- /Multisource bfs/Spoj - BITMAP - Bitmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Multisource bfs/Spoj - BITMAP - Bitmap.cpp -------------------------------------------------------------------------------- /N-Queens in Python/n-queens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/N-Queens in Python/n-queens.py -------------------------------------------------------------------------------- /Nitish(Waterupto) Files/CJKOB20D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Nitish(Waterupto) Files/CJKOB20D.cpp -------------------------------------------------------------------------------- /Nitish(Waterupto) Files/CJKOB20J.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Nitish(Waterupto) Files/CJKOB20J.cpp -------------------------------------------------------------------------------- /NumPy Guide/1. NumPy Introduction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/NumPy Guide/1. NumPy Introduction.ipynb -------------------------------------------------------------------------------- /NumPy Guide/2. Basics of NumPy Arrays.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/NumPy Guide/2. Basics of NumPy Arrays.ipynb -------------------------------------------------------------------------------- /NumPy Guide/4. Comparisons, Masks and Boolean Logic.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/NumPy Guide/4. Comparisons, Masks and Boolean Logic.ipynb -------------------------------------------------------------------------------- /NumPy Guide/5. Fancy Indexing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/NumPy Guide/5. Fancy Indexing.ipynb -------------------------------------------------------------------------------- /NumPy Guide/6. Sorting Arrays.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/NumPy Guide/6. Sorting Arrays.ipynb -------------------------------------------------------------------------------- /NumPy Guide/7. Structured Data - NumPy's Structured Arrays.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/NumPy Guide/7. Structured Data - NumPy's Structured Arrays.ipynb -------------------------------------------------------------------------------- /NumPy Guide/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/NumPy Guide/README.md -------------------------------------------------------------------------------- /OpenCV/Blender_Suzanne2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/Blender_Suzanne2.jpg -------------------------------------------------------------------------------- /OpenCV/HappyFish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/HappyFish.jpg -------------------------------------------------------------------------------- /OpenCV/LinuxLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/LinuxLogo.jpg -------------------------------------------------------------------------------- /OpenCV/aloeGT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/aloeGT.png -------------------------------------------------------------------------------- /OpenCV/apple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/apple.jpg -------------------------------------------------------------------------------- /OpenCV/detect_blob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/detect_blob.png -------------------------------------------------------------------------------- /OpenCV/getting_started_with_imgs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/getting_started_with_imgs.py -------------------------------------------------------------------------------- /OpenCV/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/gradient.png -------------------------------------------------------------------------------- /OpenCV/l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/l.png -------------------------------------------------------------------------------- /OpenCV/l1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/l1.png -------------------------------------------------------------------------------- /OpenCV/left08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/left08.jpg -------------------------------------------------------------------------------- /OpenCV/openCV.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/openCV.ipynb -------------------------------------------------------------------------------- /OpenCV/opencv-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/opencv-logo.png -------------------------------------------------------------------------------- /OpenCV/pic3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/pic3.png -------------------------------------------------------------------------------- /OpenCV/s.py: -------------------------------------------------------------------------------- 1 | v -------------------------------------------------------------------------------- /OpenCV/smarties.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/smarties.png -------------------------------------------------------------------------------- /OpenCV/started_with_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/OpenCV/started_with_videos.py -------------------------------------------------------------------------------- /PDF-Reader/pdfreader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/PDF-Reader/pdfreader.py -------------------------------------------------------------------------------- /Palveet's files/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Palveet's files/index.html -------------------------------------------------------------------------------- /Palveet's files/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Palveet's files/styles.css -------------------------------------------------------------------------------- /Prathamesh Files/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Prathamesh Files/Main.java -------------------------------------------------------------------------------- /Prathamesh Files/Practicing_Proficiency/Append and Delete.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Prathamesh Files/Practicing_Proficiency/Append and Delete.java -------------------------------------------------------------------------------- /Prathamesh Files/Practicing_Proficiency/Diagonal Difference.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Prathamesh Files/Practicing_Proficiency/Diagonal Difference.java -------------------------------------------------------------------------------- /Prathamesh Files/Practicing_Proficiency/Encryption.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Prathamesh Files/Practicing_Proficiency/Encryption.java -------------------------------------------------------------------------------- /Prathamesh Files/Practicing_Proficiency/Shoe_Pair.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Prathamesh Files/Practicing_Proficiency/Shoe_Pair.java -------------------------------------------------------------------------------- /Prathamesh Files/Practicing_Proficiency/The Grid Search.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Prathamesh Files/Practicing_Proficiency/The Grid Search.java -------------------------------------------------------------------------------- /Prathamesh Files/Practicing_Proficiency/kangaroo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Prathamesh Files/Practicing_Proficiency/kangaroo.java -------------------------------------------------------------------------------- /Prathamesh Files/Practicing_Proficiency/saveThePrisoner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Prathamesh Files/Practicing_Proficiency/saveThePrisoner.java -------------------------------------------------------------------------------- /Prathamesh Files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Prathamesh Files/README.md -------------------------------------------------------------------------------- /Prathamesh Files/perimeter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Prathamesh Files/perimeter.java -------------------------------------------------------------------------------- /Progamação competitiva/algoritmo_de_euclide.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Progamação competitiva/algoritmo_de_euclide.cpp -------------------------------------------------------------------------------- /Python Image Downloader/image_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python Image Downloader/image_downloader.py -------------------------------------------------------------------------------- /Python-mysql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python-mysql/README.md -------------------------------------------------------------------------------- /Python-mysql/mysql-python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python-mysql/mysql-python.py -------------------------------------------------------------------------------- /Python/Football_Database/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/.DS_Store -------------------------------------------------------------------------------- /Python/Football_Database/data/1970.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1970.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1971.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1971.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1972.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1972.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1973.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1973.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1974.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1974.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1975.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1975.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1976.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1976.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1977.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1977.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1978.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1978.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1979.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1979.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1980.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1980.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1981.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1981.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1982.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1982.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1983.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1983.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1984.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1984.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1985.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1985.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1986.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1986.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1987.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1987.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1988.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1988.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1989.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1989.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1990.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1990.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1991.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1991.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1992.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1992.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1993.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1993.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1994.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1994.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1995.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1995.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1996.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1996.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1997.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1997.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1998.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1998.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/1999.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/1999.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2000.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2000.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2001.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2001.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2002.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2002.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2003.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2003.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2004.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2004.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2005.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2005.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2006.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2006.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2007.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2007.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2008.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2008.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2009.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2009.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2010.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2010.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2011.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2011.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2012.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2012.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2013.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2013.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2014.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2014.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2015.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2015.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2016.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2016.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2017.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2017.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2018.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2018.csv -------------------------------------------------------------------------------- /Python/Football_Database/data/2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/data/2019.csv -------------------------------------------------------------------------------- /Python/Football_Database/football.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/Football_Database/football.py -------------------------------------------------------------------------------- /Python/wordcount.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Python/wordcount.py -------------------------------------------------------------------------------- /R/create_graph_hist.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/R/create_graph_hist.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/README.md -------------------------------------------------------------------------------- /Random/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Random/.DS_Store -------------------------------------------------------------------------------- /Random/FirstIndexOfNumber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Random/FirstIndexOfNumber.cpp -------------------------------------------------------------------------------- /Random/RockPaperScissorsSpockLizard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Random/RockPaperScissorsSpockLizard.py -------------------------------------------------------------------------------- /Random/Sreevishnu's files: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Random/no of div without seive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Random/no of div without seive.cpp -------------------------------------------------------------------------------- /Saakshi's files/.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/.expo-shared/assets.json -------------------------------------------------------------------------------- /Saakshi's files/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/.gitignore -------------------------------------------------------------------------------- /Saakshi's files/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/App.js -------------------------------------------------------------------------------- /Saakshi's files/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/app.json -------------------------------------------------------------------------------- /Saakshi's files/assets/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/assets/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /Saakshi's files/assets/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/assets/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /Saakshi's files/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/assets/icon.png -------------------------------------------------------------------------------- /Saakshi's files/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/assets/splash.png -------------------------------------------------------------------------------- /Saakshi's files/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/babel.config.js -------------------------------------------------------------------------------- /Saakshi's files/components/CategoryGridTile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/components/CategoryGridTile.js -------------------------------------------------------------------------------- /Saakshi's files/components/CustomHeaderButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/components/CustomHeaderButton.js -------------------------------------------------------------------------------- /Saakshi's files/components/MealItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/components/MealItem.js -------------------------------------------------------------------------------- /Saakshi's files/components/MealList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/components/MealList.js -------------------------------------------------------------------------------- /Saakshi's files/constants/BodyText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/constants/BodyText.js -------------------------------------------------------------------------------- /Saakshi's files/constants/Colors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/constants/Colors.js -------------------------------------------------------------------------------- /Saakshi's files/constants/Theme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/constants/Theme.js -------------------------------------------------------------------------------- /Saakshi's files/data/dummy-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/data/dummy-data.js -------------------------------------------------------------------------------- /Saakshi's files/models/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/models/category.js -------------------------------------------------------------------------------- /Saakshi's files/models/meal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/models/meal.js -------------------------------------------------------------------------------- /Saakshi's files/navigations/MealNavigator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/navigations/MealNavigator.js -------------------------------------------------------------------------------- /Saakshi's files/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/package-lock.json -------------------------------------------------------------------------------- /Saakshi's files/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/package.json -------------------------------------------------------------------------------- /Saakshi's files/screens/CategoriesScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/screens/CategoriesScreen.js -------------------------------------------------------------------------------- /Saakshi's files/screens/CategoryMealsScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/screens/CategoryMealsScreen.js -------------------------------------------------------------------------------- /Saakshi's files/screens/FavouritesScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/screens/FavouritesScreen.js -------------------------------------------------------------------------------- /Saakshi's files/screens/FiltersScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/screens/FiltersScreen.js -------------------------------------------------------------------------------- /Saakshi's files/screens/MealDetailScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/screens/MealDetailScreen.js -------------------------------------------------------------------------------- /Saakshi's files/store/actions/mealsAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/store/actions/mealsAction.js -------------------------------------------------------------------------------- /Saakshi's files/store/actions/themeAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/store/actions/themeAction.js -------------------------------------------------------------------------------- /Saakshi's files/store/reducers/mealsReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/store/reducers/mealsReducer.js -------------------------------------------------------------------------------- /Saakshi's files/store/reducers/themeReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Saakshi's files/store/reducers/themeReducer.js -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/.DS_Store -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/LICENSE -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/README.md: -------------------------------------------------------------------------------- 1 | # Drum-Kit-Webpage -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | 3 | } -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/images/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/images/crash.png -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/images/kick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/images/kick.png -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/images/snare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/images/snare.png -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/images/tom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/images/tom1.png -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/images/tom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/images/tom2.png -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/images/tom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/images/tom3.png -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/images/tom4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/images/tom4.png -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/index.html -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/index.js -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/sounds/crash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/sounds/crash.mp3 -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/sounds/kick-bass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/sounds/kick-bass.mp3 -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/sounds/snare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/sounds/snare.mp3 -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/sounds/tom-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/sounds/tom-1.mp3 -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/sounds/tom-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/sounds/tom-2.mp3 -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/sounds/tom-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/sounds/tom-3.mp3 -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/sounds/tom-4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/sounds/tom-4.mp3 -------------------------------------------------------------------------------- /Sandipan's files/Drum-Kit Webpage/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Drum-Kit Webpage/styles.css -------------------------------------------------------------------------------- /Sandipan's files/JS-based Memory Game/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/JS-based Memory Game/.DS_Store -------------------------------------------------------------------------------- /Sandipan's files/JS-based Memory Game/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/JS-based Memory Game/game.js -------------------------------------------------------------------------------- /Sandipan's files/JS-based Memory Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/JS-based Memory Game/index.html -------------------------------------------------------------------------------- /Sandipan's files/JS-based Memory Game/sounds/blue.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/JS-based Memory Game/sounds/blue.mp3 -------------------------------------------------------------------------------- /Sandipan's files/JS-based Memory Game/sounds/green.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/JS-based Memory Game/sounds/green.mp3 -------------------------------------------------------------------------------- /Sandipan's files/JS-based Memory Game/sounds/red.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/JS-based Memory Game/sounds/red.mp3 -------------------------------------------------------------------------------- /Sandipan's files/JS-based Memory Game/sounds/wrong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/JS-based Memory Game/sounds/wrong.mp3 -------------------------------------------------------------------------------- /Sandipan's files/JS-based Memory Game/sounds/yellow.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/JS-based Memory Game/sounds/yellow.mp3 -------------------------------------------------------------------------------- /Sandipan's files/JS-based Memory Game/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/JS-based Memory Game/styles.css -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/bmiCalculator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/bmiCalculator.html -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/calculator.js -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/.bin/mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/node_modules/.bin/mime -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/.bin/mime.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/node_modules/.bin/mime.cmd -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/depd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/node_modules/depd/LICENSE -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/etag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/node_modules/etag/LICENSE -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/mime/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/node_modules/mime/LICENSE -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/mime/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/node_modules/mime/cli.js -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/mime/mime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/node_modules/mime/mime.js -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/node_modules/ms/index.js -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/ms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/node_modules/ms/readme.md -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/qs/.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/qs/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/node_modules/qs/.eslintrc -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/qs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/node_modules/qs/LICENSE -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/qs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/node_modules/qs/README.md -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/send/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/node_modules/send/LICENSE -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/node_modules/vary/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/node_modules/vary/LICENSE -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/package-lock.json -------------------------------------------------------------------------------- /Sandipan's files/Node based Calculator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sandipan's files/Node based Calculator/package.json -------------------------------------------------------------------------------- /Sarthak Files/Application-1 Interactive Dictionary/app1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sarthak Files/Application-1 Interactive Dictionary/app1.py -------------------------------------------------------------------------------- /Sarthak Files/Application-1 Interactive Dictionary/data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sarthak Files/Application-1 Interactive Dictionary/data.json -------------------------------------------------------------------------------- /Sarthak Files/Application-1 Interactive Dictionary/exercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Sarthak Files/Application-1 Interactive Dictionary/exercise.py -------------------------------------------------------------------------------- /Searching-algo/binary-search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Searching-algo/binary-search.cpp -------------------------------------------------------------------------------- /Searching-algo/exponential-search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Searching-algo/exponential-search.cpp -------------------------------------------------------------------------------- /Searching-algo/interpolation-search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Searching-algo/interpolation-search.cpp -------------------------------------------------------------------------------- /Searching-algo/linear-search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Searching-algo/linear-search.cpp -------------------------------------------------------------------------------- /Spam Ham Detector/README.md: -------------------------------------------------------------------------------- 1 | Please extract the folder emails.zip first -------------------------------------------------------------------------------- /Spam Ham Detector/Spam Filter Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Spam Ham Detector/Spam Filter Demo.ipynb -------------------------------------------------------------------------------- /Spam Ham Detector/emails.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Spam Ham Detector/emails.zip -------------------------------------------------------------------------------- /Star Patterns cpp/cross.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Star Patterns cpp/cross.cpp -------------------------------------------------------------------------------- /Star Patterns cpp/diamond.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Star Patterns cpp/diamond.cpp -------------------------------------------------------------------------------- /Star Patterns cpp/pattern-star.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Star Patterns cpp/pattern-star.cpp -------------------------------------------------------------------------------- /Star Patterns cpp/reverse-star.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Star Patterns cpp/reverse-star.cpp -------------------------------------------------------------------------------- /Star Patterns cpp/square.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Star Patterns cpp/square.cpp -------------------------------------------------------------------------------- /Star Patterns cpp/traingle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Star Patterns cpp/traingle.cpp -------------------------------------------------------------------------------- /Suvodeep's Files/FloydsTriangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Suvodeep's Files/FloydsTriangle.cpp -------------------------------------------------------------------------------- /Suvodeep's Files/PascalsTraingle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Suvodeep's Files/PascalsTraingle.cpp -------------------------------------------------------------------------------- /Tic Tac Toe/hoct3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Tic Tac Toe/hoct3.py -------------------------------------------------------------------------------- /Tic Tac Toe/tic-tac-toe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Tic Tac Toe/tic-tac-toe.py -------------------------------------------------------------------------------- /Tree_Traversal/Boundary_Traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Tree_Traversal/Boundary_Traversal.cpp -------------------------------------------------------------------------------- /Tree_Traversal/InOrder_Traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Tree_Traversal/InOrder_Traversal.cpp -------------------------------------------------------------------------------- /Tree_Traversal/PostOrder_Traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Tree_Traversal/PostOrder_Traversal.cpp -------------------------------------------------------------------------------- /Tree_Traversal/PreOrder_Traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Tree_Traversal/PreOrder_Traversal.cpp -------------------------------------------------------------------------------- /Tree_Traversal/Spiral_Traversal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Tree_Traversal/Spiral_Traversal.cpp -------------------------------------------------------------------------------- /Triangle_PrintingStar/triamgle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Triangle_PrintingStar/triamgle.java -------------------------------------------------------------------------------- /Triangle_PrintingStar/triangle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Triangle_PrintingStar/triangle.java -------------------------------------------------------------------------------- /Triangle_PrintingStar/triangle1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Triangle_PrintingStar/triangle1.java -------------------------------------------------------------------------------- /Triangle_PrintingStar/triangle2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Triangle_PrintingStar/triangle2.java -------------------------------------------------------------------------------- /Triangle_PrintingStar/triangle3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Triangle_PrintingStar/triangle3.java -------------------------------------------------------------------------------- /Triangle_PrintingStar/triangle4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Triangle_PrintingStar/triangle4.java -------------------------------------------------------------------------------- /Url-Shortner/urlshortner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Url-Shortner/urlshortner.py -------------------------------------------------------------------------------- /Vedansh's files/Notepad/Notepad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Vedansh's files/Notepad/Notepad.py -------------------------------------------------------------------------------- /Vedansh's files/Notepad/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Vedansh's files/Notepad/README.md -------------------------------------------------------------------------------- /Vedansh's files/Notepad/notepad_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Vedansh's files/Notepad/notepad_icon.ico -------------------------------------------------------------------------------- /Vehicle Counting/VehicleCounter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Vehicle Counting/VehicleCounter.py -------------------------------------------------------------------------------- /Web_Crawler/Books_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Web_Crawler/Books_scraper.py -------------------------------------------------------------------------------- /Web_Crawler/Quotes_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Web_Crawler/Quotes_extractor.py -------------------------------------------------------------------------------- /Word-List-Generator/wordlistgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/Word-List-Generator/wordlistgen.py -------------------------------------------------------------------------------- /alarmclock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/alarmclock -------------------------------------------------------------------------------- /ann-www/addition.js: -------------------------------------------------------------------------------- 1 | console.log(20+20); 2 | -------------------------------------------------------------------------------- /ann-www/hello-world.js: -------------------------------------------------------------------------------- 1 | console.log("Hello world"); 2 | -------------------------------------------------------------------------------- /ann-www/multiply.js: -------------------------------------------------------------------------------- 1 | console.log(20*20); 2 | -------------------------------------------------------------------------------- /ann-www/subtraction.js: -------------------------------------------------------------------------------- 1 | console.log(20-20); 2 | -------------------------------------------------------------------------------- /apurva's fraud detection system/fraud detection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/apurva's fraud detection system/fraud detection.ipynb -------------------------------------------------------------------------------- /apurva's fraud detection system/ic.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/apurva's fraud detection system/ic.csv -------------------------------------------------------------------------------- /apurva's supermarket system/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/apurva's supermarket system/Makefile -------------------------------------------------------------------------------- /apurva's supermarket system/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/apurva's supermarket system/a.out -------------------------------------------------------------------------------- /apurva's supermarket system/clerk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/apurva's supermarket system/clerk.h -------------------------------------------------------------------------------- /apurva's supermarket system/customer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/apurva's supermarket system/customer.h -------------------------------------------------------------------------------- /apurva's supermarket system/dataClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/apurva's supermarket system/dataClass.h -------------------------------------------------------------------------------- /apurva's supermarket system/grocery_store.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/apurva's supermarket system/grocery_store.cpp -------------------------------------------------------------------------------- /apurva's supermarket system/grocery_store.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/apurva's supermarket system/grocery_store.o -------------------------------------------------------------------------------- /apurva's supermarket system/items.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/apurva's supermarket system/items.dat -------------------------------------------------------------------------------- /apurva's supermarket system/store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/apurva's supermarket system/store -------------------------------------------------------------------------------- /bin_search/Aggressive_Cows.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/bin_search/Aggressive_Cows.cpp -------------------------------------------------------------------------------- /bin_search/Binary_Search(Recursion).cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/bin_search/Binary_Search(Recursion).cpp -------------------------------------------------------------------------------- /bin_search/Book_Allocation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/bin_search/Book_Allocation.cpp -------------------------------------------------------------------------------- /bin_search/min-pages.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/bin_search/min-pages.cpp -------------------------------------------------------------------------------- /binary_search_tree/delbst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/binary_search_tree/delbst.c -------------------------------------------------------------------------------- /c program/Circular LinkedList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/c program/Circular LinkedList.c -------------------------------------------------------------------------------- /c program/Create A Basic Stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/c program/Create A Basic Stack.c -------------------------------------------------------------------------------- /c program/Create Queue Using LinkedList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/c program/Create Queue Using LinkedList.c -------------------------------------------------------------------------------- /c program/Doubly LinkedList.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/c program/Doubly LinkedList.c -------------------------------------------------------------------------------- /c program/LinkedList Add Consonants After Vowels.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/c program/LinkedList Add Consonants After Vowels.c -------------------------------------------------------------------------------- /c program/calender.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/c program/calender.c -------------------------------------------------------------------------------- /c program/concatenate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/c program/concatenate.c -------------------------------------------------------------------------------- /c program/fibbonaci_using_recursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/c program/fibbonaci_using_recursion.c -------------------------------------------------------------------------------- /c program/max_min_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/c program/max_min_array.c -------------------------------------------------------------------------------- /c program/sumoffirst10naturalnumber.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/c program/sumoffirst10naturalnumber.c -------------------------------------------------------------------------------- /c program/toggle_case.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/c program/toggle_case.c -------------------------------------------------------------------------------- /cp/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env -------------------------------------------------------------------------------- /cp/model/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cp/model/User.js -------------------------------------------------------------------------------- /cp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cp/package-lock.json -------------------------------------------------------------------------------- /cp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cp/package.json -------------------------------------------------------------------------------- /cp/routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cp/routes/auth.js -------------------------------------------------------------------------------- /cp/routes/posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cp/routes/posts.js -------------------------------------------------------------------------------- /cp/routes/verifyToken.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cp/routes/verifyToken.js -------------------------------------------------------------------------------- /cp/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cp/server.js -------------------------------------------------------------------------------- /cp/validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cp/validation.js -------------------------------------------------------------------------------- /cpp files/Binary Search Iter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cpp files/Binary Search Iter.cpp -------------------------------------------------------------------------------- /cpp files/Complex number calculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cpp files/Complex number calculator.cpp -------------------------------------------------------------------------------- /cpp files/DLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cpp files/DLL.cpp -------------------------------------------------------------------------------- /cpp files/Linked List Functions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cpp files/Linked List Functions.cpp -------------------------------------------------------------------------------- /cpp files/Matrix Multiplication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cpp files/Matrix Multiplication.cpp -------------------------------------------------------------------------------- /cpp files/Pattern pyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cpp files/Pattern pyramid.cpp -------------------------------------------------------------------------------- /cpp files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cpp files/README.md -------------------------------------------------------------------------------- /cpp files/SLL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cpp files/SLL.cpp -------------------------------------------------------------------------------- /cpp files/STL_UnorderedMap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cpp files/STL_UnorderedMap -------------------------------------------------------------------------------- /cpp files/all_indeces_prob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cpp files/all_indeces_prob.cpp -------------------------------------------------------------------------------- /cpp files/binarytree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cpp files/binarytree.c -------------------------------------------------------------------------------- /cpp files/mergeSort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cpp files/mergeSort.cpp -------------------------------------------------------------------------------- /cpp files/palindrome in c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/cpp files/palindrome in c -------------------------------------------------------------------------------- /currencyconverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/currencyconverter.py -------------------------------------------------------------------------------- /doubly_linked_list/dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/doubly_linked_list/dll.c -------------------------------------------------------------------------------- /event handling/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/event handling/.classpath -------------------------------------------------------------------------------- /event handling/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/event handling/.project -------------------------------------------------------------------------------- /event handling/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/event handling/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /event handling/bin/blue$thehandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/event handling/bin/blue$thehandler.class -------------------------------------------------------------------------------- /event handling/bin/blue.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/event handling/bin/blue.class -------------------------------------------------------------------------------- /event handling/bin/demo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/event handling/bin/demo.class -------------------------------------------------------------------------------- /event handling/src/demo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/event handling/src/demo.java -------------------------------------------------------------------------------- /hacktw/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/hacktw/add.c -------------------------------------------------------------------------------- /hacktw/add.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/hacktw/add.cpp -------------------------------------------------------------------------------- /hacktw/add.js: -------------------------------------------------------------------------------- 1 | console.log(20+20); 2 | -------------------------------------------------------------------------------- /hacktw/add.py: -------------------------------------------------------------------------------- 1 | print(20+20) 2 | -------------------------------------------------------------------------------- /hacktw/hello-world.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/hacktw/hello-world.c -------------------------------------------------------------------------------- /hacktw/hello-world.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/hacktw/hello-world.cpp -------------------------------------------------------------------------------- /hacktw/hello-world.js: -------------------------------------------------------------------------------- 1 | console.log("Hello world"); 2 | -------------------------------------------------------------------------------- /hacktw/hello-world.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/hacktw/hello-world.py -------------------------------------------------------------------------------- /javascriptanimation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/javascriptanimation -------------------------------------------------------------------------------- /kalash's leetcode questions solution/add_search_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/add_search_word.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/all_dublicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/all_dublicates.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/defanging an ip address.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/defanging an ip address.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/deompress_run_lenght.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/deompress_run_lenght.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/detecctcapital.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/detecctcapital.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/h-index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/h-index.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/hindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/hindex.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/how_number_are_smaller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/how_number_are_smaller.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/jewels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/jewels.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/longest-substring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/longest-substring.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/longest_palindroem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/longest_palindroem.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/no_to_reduce_no_to_zero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/no_to_reduce_no_to_zero.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/number_of_good_pairs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/number_of_good_pairs.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/power_of_four.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/power_of_four.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/rotten_oranges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/rotten_oranges.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/shuffle_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/shuffle_string.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/shuffle_the_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/shuffle_the_array.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/valid_palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/valid_palindrome.py -------------------------------------------------------------------------------- /kalash's leetcode questions solution/xor_operation_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/kalash's leetcode questions solution/xor_operation_array.py -------------------------------------------------------------------------------- /madlibsgenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/madlibsgenerator.py -------------------------------------------------------------------------------- /meme-generator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/.gitignore -------------------------------------------------------------------------------- /meme-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/README.md -------------------------------------------------------------------------------- /meme-generator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/package-lock.json -------------------------------------------------------------------------------- /meme-generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/package.json -------------------------------------------------------------------------------- /meme-generator/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/public/favicon.ico -------------------------------------------------------------------------------- /meme-generator/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/public/index.html -------------------------------------------------------------------------------- /meme-generator/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/public/logo192.png -------------------------------------------------------------------------------- /meme-generator/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/public/logo512.png -------------------------------------------------------------------------------- /meme-generator/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/public/manifest.json -------------------------------------------------------------------------------- /meme-generator/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/public/robots.txt -------------------------------------------------------------------------------- /meme-generator/src/App.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meme-generator/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/src/App.js -------------------------------------------------------------------------------- /meme-generator/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/src/App.test.js -------------------------------------------------------------------------------- /meme-generator/src/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/src/Header.js -------------------------------------------------------------------------------- /meme-generator/src/MemeGeneratore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/src/MemeGeneratore.js -------------------------------------------------------------------------------- /meme-generator/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/src/index.css -------------------------------------------------------------------------------- /meme-generator/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/src/index.js -------------------------------------------------------------------------------- /meme-generator/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/src/serviceWorker.js -------------------------------------------------------------------------------- /meme-generator/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/src/setupTests.js -------------------------------------------------------------------------------- /meme-generator/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/meme-generator/yarn.lock -------------------------------------------------------------------------------- /my designs/chegg final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/my designs/chegg final.pdf -------------------------------------------------------------------------------- /my designs/sample 1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/my designs/sample 1.pdf -------------------------------------------------------------------------------- /my designs/sample 2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/my designs/sample 2.pdf -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Association_Rule_Learning/Apriori.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Association_Rule_Learning/Apriori.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Association_Rule_Learning/Eclat.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Association_Rule_Learning/Eclat.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Classification/Best_Model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Classification/Best_Model.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Classification/KNN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Classification/KNN.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Classification/Kernel_SVM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Classification/Kernel_SVM.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Classification/Logistic_Regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Classification/Logistic_Regression.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Classification/Random_Forest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Classification/Random_Forest.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Classification/SVM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Classification/SVM.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Clustering/Hierarchical_Clustering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Clustering/Hierarchical_Clustering.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Clustering/K-Means.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Clustering/K-Means.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Data_Preprocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Data_Preprocessing.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Deep_Learning/ANN-PowerPlant.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Deep_Learning/ANN-PowerPlant.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Deep_Learning/ANN_SOM_Hybrid.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Deep_Learning/ANN_SOM_Hybrid.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Deep_Learning/AutoEncoder.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Deep_Learning/AutoEncoder.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Deep_Learning/CNN-CatsAndDogs.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Deep_Learning/CNN-CatsAndDogs.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Deep_Learning/RBM.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Deep_Learning/RBM.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Deep_Learning/RNN-GoogleStockPrice.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Deep_Learning/RNN-GoogleStockPrice.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Deep_Learning/SOM-Credit_Card.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Deep_Learning/SOM-Credit_Card.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Dimensionality_Reduction/Kernel_PCA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Dimensionality_Reduction/Kernel_PCA.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Dimensionality_Reduction/LDA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Dimensionality_Reduction/LDA.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Dimensionality_Reduction/PCA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Dimensionality_Reduction/PCA.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Grad-CAM-Xception.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Grad-CAM-Xception.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/MNIST.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/MNIST.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Model_Selection_Boosting/XG_Boost.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Model_Selection_Boosting/XG_Boost.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Natural_Language_Processing/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Natural_Language_Processing/model.json -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Regression/Best_Model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Regression/Best_Model.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Regression/Decision_Tree_Regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Regression/Decision_Tree_Regression.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Regression/Polynomial_Regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Regression/Polynomial_Regression.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Regression/Random_Forest.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Regression/Random_Forest.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Regression/SVR.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Regression/SVR.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/Regression/Simple_Linear_Regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/Regression/Simple_Linear_Regression.ipynb -------------------------------------------------------------------------------- /nathzi1505_ml_examples/mnist_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/mnist_model.h5 -------------------------------------------------------------------------------- /nathzi1505_ml_examples/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/nathzi1505_ml_examples/requirements.txt -------------------------------------------------------------------------------- /node-rest-api/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /node-rest-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/node-rest-api/README.md -------------------------------------------------------------------------------- /node-rest-api/controllers/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/node-rest-api/controllers/controller.js -------------------------------------------------------------------------------- /node-rest-api/data/products.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/node-rest-api/data/products.json -------------------------------------------------------------------------------- /node-rest-api/models/productModel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/node-rest-api/models/productModel.js -------------------------------------------------------------------------------- /node-rest-api/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/node-rest-api/package-lock.json -------------------------------------------------------------------------------- /node-rest-api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/node-rest-api/package.json -------------------------------------------------------------------------------- /node-rest-api/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/node-rest-api/server.js -------------------------------------------------------------------------------- /node-rest-api/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/node-rest-api/utils.js -------------------------------------------------------------------------------- /opencvtextdetection/images/sign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/opencvtextdetection/images/sign.jpg -------------------------------------------------------------------------------- /opencvtextdetection/textdetection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/opencvtextdetection/textdetection.py -------------------------------------------------------------------------------- /opencvtextdetection/textdetectionvideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/opencvtextdetection/textdetectionvideo.py -------------------------------------------------------------------------------- /project using html,css and js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/project using html,css and js -------------------------------------------------------------------------------- /registration_login_form/136503.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/registration_login_form/136503.jpg -------------------------------------------------------------------------------- /registration_login_form/cong.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/registration_login_form/cong.css -------------------------------------------------------------------------------- /registration_login_form/cong.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/registration_login_form/cong.html -------------------------------------------------------------------------------- /registration_login_form/for.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/registration_login_form/for.css -------------------------------------------------------------------------------- /registration_login_form/for.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/registration_login_form/for.html -------------------------------------------------------------------------------- /registration_login_form/logn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/registration_login_form/logn.css -------------------------------------------------------------------------------- /registration_login_form/logn.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/registration_login_form/logn.html -------------------------------------------------------------------------------- /registration_login_form/re.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/registration_login_form/re.css -------------------------------------------------------------------------------- /registration_login_form/re.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/registration_login_form/re.html -------------------------------------------------------------------------------- /registration_login_form/sgnup.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/registration_login_form/sgnup.css -------------------------------------------------------------------------------- /registration_login_form/sgnup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/registration_login_form/sgnup.html -------------------------------------------------------------------------------- /responsive food wedsite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/responsive food wedsite -------------------------------------------------------------------------------- /rohan_files/Readme.md: -------------------------------------------------------------------------------- 1 | Hello...!!!! 2 | -------------------------------------------------------------------------------- /sinking ship/sinkingship.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/sinking ship/sinkingship.cpp -------------------------------------------------------------------------------- /sorting algo/binary search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/sorting algo/binary search.c -------------------------------------------------------------------------------- /sorting algo/bubble sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/sorting algo/bubble sort.c -------------------------------------------------------------------------------- /sorting algo/count sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/sorting algo/count sort.c -------------------------------------------------------------------------------- /sorting algo/insertion sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/sorting algo/insertion sort.c -------------------------------------------------------------------------------- /sorting algo/merge sort.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /sorting algo/prime factorization using sieve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/sorting algo/prime factorization using sieve.c -------------------------------------------------------------------------------- /sorting algo/quick sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/sorting algo/quick sort.c -------------------------------------------------------------------------------- /sorting algo/selection sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/sorting algo/selection sort.c -------------------------------------------------------------------------------- /sorting algo/sieve of eratosthenes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/sorting algo/sieve of eratosthenes.c -------------------------------------------------------------------------------- /stocks-dash/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/stocks-dash/app.py -------------------------------------------------------------------------------- /stocks-dash/assets/stonk-img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/stocks-dash/assets/stonk-img.png -------------------------------------------------------------------------------- /stocks-dash/assets/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/stocks-dash/assets/styles.css -------------------------------------------------------------------------------- /stocks-dash/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/stocks-dash/model.py -------------------------------------------------------------------------------- /string_manipulation/max_char.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/string_manipulation/max_char.py -------------------------------------------------------------------------------- /student alcohol consumption(by marpit19)/student-mat.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/student alcohol consumption(by marpit19)/student-mat.csv -------------------------------------------------------------------------------- /student alcohol consumption(by marpit19)/student-por.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/student alcohol consumption(by marpit19)/student-por.csv -------------------------------------------------------------------------------- /sudoko_solver/sudoko_solver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/sudoko_solver/sudoko_solver.cpp -------------------------------------------------------------------------------- /takaika/Hangout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/takaika/Hangout -------------------------------------------------------------------------------- /takaika/README.md: -------------------------------------------------------------------------------- 1 | Hello, this is my first expirience in PR to opensource! 2 | -------------------------------------------------------------------------------- /takaika/sort/bubble_sort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/takaika/sort/bubble_sort.php -------------------------------------------------------------------------------- /takaika/sort/examples.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/takaika/sort/examples.php -------------------------------------------------------------------------------- /takaika/sort/fast_sort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/takaika/sort/fast_sort.php -------------------------------------------------------------------------------- /takaika/sort/merge_sort.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/takaika/sort/merge_sort.php -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/.DS_Store -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/README.md -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/.gitignore -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/README.md -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/build/asset-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/build/asset-manifest.json -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/build/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/build/favicon.ico -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/build/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/build/index.html -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/build/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/build/logo192.png -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/build/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/build/logo512.png -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/build/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/build/manifest.json -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/build/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/build/robots.txt -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/build/service-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/build/service-worker.js -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/package-lock.json -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/package.json -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/public/favicon.ico -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/public/index.html -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/public/logo192.png -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/public/logo512.png -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/public/manifest.json -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/public/robots.txt -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/src/index.css -------------------------------------------------------------------------------- /tic-tac-toe-reactjs/tic-tac-toe/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/tic-tac-toe-reactjs/tic-tac-toe/src/index.js -------------------------------------------------------------------------------- /vivek sharma/RockPaperScissor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/vivek sharma/RockPaperScissor.py -------------------------------------------------------------------------------- /words.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sd2001/HacktoberFest2020/HEAD/words.py --------------------------------------------------------------------------------