├── .gitignore ├── C++ ├── Gradecalculator.cpp ├── KadaneAlgorithm.cpp ├── StirlingApprox.cpp ├── butterfly.cpp ├── find_peak_element.cpp ├── tim sort.cpp └── tsp.cpp ├── CODE_OF_CONDUCT.md ├── Contributors.md ├── JAVA └── helloWorld.java ├── Javascript ├── calculator.js ├── prime_numbers.js ├── reverseInteger.js └── tomato-food-delivery │ ├── README.md │ ├── db.json │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ ├── src │ ├── App.js │ ├── App.test.js │ ├── Context.js │ ├── components │ │ ├── Cart.js │ │ ├── Header.js │ │ ├── Home.js │ │ ├── Item.js │ │ ├── Login.js │ │ ├── Oops.js │ │ ├── Pagination.js │ │ ├── Restaurant.js │ │ ├── Signup.js │ │ ├── styles.css │ │ └── tomato.png │ ├── firebase.js │ ├── index.css │ ├── index.js │ └── reducer.js │ └── yarn.lock ├── LICENSE ├── Python ├── CRUD │ ├── Newprogram.py │ ├── scrap.py │ ├── scrape.ui │ └── student.csv ├── CToF.py ├── Convertor.py ├── Dice.py ├── Egg_Catcher_Game.py ├── Hangman │ └── Hangman.py ├── Huffman_Encoding.ipynb ├── NumberGuesse.py ├── QuickSort.py ├── Reminder.py ├── SelectionSort.py ├── SnakeGame.py ├── Spelling.py ├── String Balancing Checker.txt ├── Text_Detection │ ├── README.md │ └── text_detection.py ├── Web_Scraper.py ├── calculator.py ├── hashmap.py ├── heap sort.py ├── kadane.py ├── mergesort.py ├── password.py ├── pongGame.py └── prime_numbers.py ├── Quicksort.cc ├── README.md ├── Ruby └── linkedList.rb ├── dijkstra.c └── javascript └── dynamoDbUpdate.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/.gitignore -------------------------------------------------------------------------------- /C++/Gradecalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/C++/Gradecalculator.cpp -------------------------------------------------------------------------------- /C++/KadaneAlgorithm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/C++/KadaneAlgorithm.cpp -------------------------------------------------------------------------------- /C++/StirlingApprox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/C++/StirlingApprox.cpp -------------------------------------------------------------------------------- /C++/butterfly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/C++/butterfly.cpp -------------------------------------------------------------------------------- /C++/find_peak_element.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/C++/find_peak_element.cpp -------------------------------------------------------------------------------- /C++/tim sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/C++/tim sort.cpp -------------------------------------------------------------------------------- /C++/tsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/C++/tsp.cpp -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Contributors.md -------------------------------------------------------------------------------- /JAVA/helloWorld.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/JAVA/helloWorld.java -------------------------------------------------------------------------------- /Javascript/calculator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/calculator.js -------------------------------------------------------------------------------- /Javascript/prime_numbers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/prime_numbers.js -------------------------------------------------------------------------------- /Javascript/reverseInteger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/reverseInteger.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/README.md -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/db.json -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/package-lock.json -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/package.json -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/public/favicon.ico -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/public/index.html -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/public/logo192.png -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/public/logo512.png -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/public/manifest.json -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/public/robots.txt -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/App.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/App.test.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/Context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/Context.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/components/Cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/components/Cart.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/components/Header.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/components/Home.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/components/Item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/components/Item.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/components/Login.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/components/Oops.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/components/Oops.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/components/Pagination.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/components/Pagination.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/components/Restaurant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/components/Restaurant.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/components/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/components/Signup.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/components/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/components/styles.css -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/components/tomato.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/components/tomato.png -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/firebase.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/firebase.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/index.css -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/index.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/src/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/src/reducer.js -------------------------------------------------------------------------------- /Javascript/tomato-food-delivery/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Javascript/tomato-food-delivery/yarn.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/LICENSE -------------------------------------------------------------------------------- /Python/CRUD/Newprogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/CRUD/Newprogram.py -------------------------------------------------------------------------------- /Python/CRUD/scrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/CRUD/scrap.py -------------------------------------------------------------------------------- /Python/CRUD/scrape.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/CRUD/scrape.ui -------------------------------------------------------------------------------- /Python/CRUD/student.csv: -------------------------------------------------------------------------------- 1 | Saad Ahmad,2022-CS-01,3.89,00,UET lahore 2 | usman,232,3.43,92048373748,UCP 3 | -------------------------------------------------------------------------------- /Python/CToF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/CToF.py -------------------------------------------------------------------------------- /Python/Convertor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/Convertor.py -------------------------------------------------------------------------------- /Python/Dice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/Dice.py -------------------------------------------------------------------------------- /Python/Egg_Catcher_Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/Egg_Catcher_Game.py -------------------------------------------------------------------------------- /Python/Hangman/Hangman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/Hangman/Hangman.py -------------------------------------------------------------------------------- /Python/Huffman_Encoding.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/Huffman_Encoding.ipynb -------------------------------------------------------------------------------- /Python/NumberGuesse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/NumberGuesse.py -------------------------------------------------------------------------------- /Python/QuickSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/QuickSort.py -------------------------------------------------------------------------------- /Python/Reminder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/Reminder.py -------------------------------------------------------------------------------- /Python/SelectionSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/SelectionSort.py -------------------------------------------------------------------------------- /Python/SnakeGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/SnakeGame.py -------------------------------------------------------------------------------- /Python/Spelling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/Spelling.py -------------------------------------------------------------------------------- /Python/String Balancing Checker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/String Balancing Checker.txt -------------------------------------------------------------------------------- /Python/Text_Detection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/Text_Detection/README.md -------------------------------------------------------------------------------- /Python/Text_Detection/text_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/Text_Detection/text_detection.py -------------------------------------------------------------------------------- /Python/Web_Scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/Web_Scraper.py -------------------------------------------------------------------------------- /Python/calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/calculator.py -------------------------------------------------------------------------------- /Python/hashmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/hashmap.py -------------------------------------------------------------------------------- /Python/heap sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/heap sort.py -------------------------------------------------------------------------------- /Python/kadane.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/kadane.py -------------------------------------------------------------------------------- /Python/mergesort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/mergesort.py -------------------------------------------------------------------------------- /Python/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/password.py -------------------------------------------------------------------------------- /Python/pongGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/pongGame.py -------------------------------------------------------------------------------- /Python/prime_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Python/prime_numbers.py -------------------------------------------------------------------------------- /Quicksort.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Quicksort.cc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/README.md -------------------------------------------------------------------------------- /Ruby/linkedList.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/Ruby/linkedList.rb -------------------------------------------------------------------------------- /dijkstra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/dijkstra.c -------------------------------------------------------------------------------- /javascript/dynamoDbUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justEhmadSaeed/Hacktoberfest/HEAD/javascript/dynamoDbUpdate.js --------------------------------------------------------------------------------