├── .gitignore ├── Arrays-Sorting └── src │ ├── BogoSort │ └── BogoSort.py │ ├── Bubble_Sort │ ├── Bubble_Sort.go │ ├── Bubble_Sort.py │ └── optimzedBubbleSort │ ├── Bucket_Sort │ └── Bucket_Sort.py │ ├── Cocktail_Sort │ └── Cocktail_Sort.py │ ├── Comb_Sort │ └── Comb_Sort.py │ ├── Counting Sort │ └── counting_sort.py │ ├── Heap_Sort │ ├── .gitignore │ └── heap_sort.py │ ├── Insertion_Sort │ └── Insertion_Sort.py │ ├── Iterative_Merge_Sort │ └── Iterative_Merge_Sort.py │ ├── MonkeySort │ └── monkey_sort.py │ ├── PatienceSort │ └── patience_sort.py │ ├── Pigeon_hole │ └── pigeon_hole.py │ ├── Quick_Sort │ └── simple_quick_sort.py │ ├── Quick_sort │ └── quick_sort.py │ ├── Radix_Sort │ └── Radix_Sort.py │ ├── Recursive_Bubble_Sort │ └── Recursive_Bubble_Sort.py │ ├── Selection_Sort │ └── selection_sort.py │ ├── Shell_Sort │ └── Shell_Sort.py │ ├── Topological Sort │ └── topological_sort.py │ ├── merge_sort │ └── merge_sort.py │ └── oddEvenSort.py ├── Arrays-searching └── src │ ├── binary_search │ ├── BinarySearch.java │ ├── Recursive_Binary_Search.py │ └── binary_search.py │ ├── exponential_search │ └── exponenrtial_search.py │ ├── fibonacci_search │ ├── Fibonacci_Search.py │ └── fib_simple.go │ ├── interpolation_search │ └── interpolation_search.py │ ├── jump_search │ └── jumpSearch.py │ ├── linear_search │ └── linear_search.py │ ├── linear_search_recursion.py │ └── tenary_search │ └── ternary_search.py ├── Automation └── src │ ├── 9gag_downloader │ └── 9gag.py │ ├── Auto_Backup │ ├── README.md │ └── auto_backup.py │ ├── Auto_Tweet │ └── AutoTweet.py │ ├── Codeforces_automatic_contest_notifier │ └── codeforces.js │ ├── Comic_Downloader │ └── comic_downloader.py │ ├── Connect_to_openvpn │ ├── README.md │ └── connet_to_vpn.sh │ ├── Cookie_Clicker │ └── CookieClicker.py │ ├── FB wishes autoreplier │ └── autowish.py │ ├── General_Scraper │ └── general_scraper.py │ ├── Github-username-generator-checker │ ├── README.md │ └── github-username-generator-checker.py │ ├── Linkedin_Automation │ ├── README.md │ └── linkedin_automation.py │ ├── Manga_Downloader │ ├── MangaDownloader.py │ ├── Pipfile │ ├── Pipfile.lock │ ├── fanfox_downloader.py │ ├── manga_reader_downloader.py │ └── mangarock_Downloader.py │ ├── Multiple_Azure_VM │ └── azure-cli-lab-environment.sh │ ├── Screenshots_and_image_recognition_using_pyautogui │ ├── Readme.md │ ├── click.gif │ ├── navigate.gif │ ├── script.py │ └── u_torrent.PNG │ ├── Scripts_For_Stackoverflow │ ├── README.md │ └── run.py │ ├── Weather-update-automation │ └── weather-app.py │ ├── checkmousepos.py │ ├── convert_video_to_webm │ ├── FFMPEG │ │ └── Download FFMPEG to here │ └── videoConversion.py │ ├── desktop_automation_scripts │ └── automation of mouse and keyboard using python │ │ └── src.py │ ├── email_sender │ └── email_sender.py │ ├── execution_timer │ └── et.py │ ├── fb_login_test │ └── fb_login_test.py │ ├── google_scrapper │ └── gscrap.py │ ├── imdb_scraper │ └── imdb.py │ ├── lyrics_fetcher │ └── lyricsFetch.py │ ├── password_checker │ └── pwd_checker.py │ ├── python-recyclebin │ └── auto_clear_recyclebin.py │ ├── take-a-break.py │ ├── treat_names_here │ ├── README.md │ └── treat_names_here.py │ └── user_geo_location │ └── ugl.py ├── Backtracking ├── Rat_In_A_Maze │ └── Rat_In_A_Maze.java └── Sudoku Solver │ └── Sudoku_solver_backtracking.py ├── Cryptography └── src │ ├── Base64_Converter │ └── base64_converter.py │ ├── Caesar │ ├── Brutus │ │ └── brutus.py │ ├── ROT13 │ │ └── ROT13.py │ ├── SPM │ │ └── SPM.cpp │ └── Simple_Caesar │ │ ├── caesarcrypto.go │ │ ├── caesarcrypto.py │ │ ├── caesarcrypto_test.go │ │ └── little_more_advanced_bruteforce.py │ ├── Enigma_Machine │ └── enigma.py │ ├── Keyword Cipher │ └── keyword_cipher.py │ ├── MD5_Convertor │ └── md5_converter.py │ ├── Password_Generator │ └── pass_gen.py │ ├── Public_Key_Cryptography_Standards │ └── pkcs7.py │ ├── RSA │ ├── PKCS1_OAEP.py │ ├── RSA_simple.ipynb │ └── generate_key.py │ ├── RailFenceCipher │ ├── generic_rail_fence.py │ └── rf.py │ ├── Repeating_Key_XOR │ └── Repeating_key_xor.py │ └── Single_Byte_XOR │ └── single_byte_xor.py ├── Data_Structure └── src │ ├── Linked Lists │ ├── Doubly_Linked_list.py │ ├── Floyd’s Cycle-Finding Algorithm │ ├── Singly_Linked_List.py │ └── circular_linked_list.py │ ├── Queue │ ├── Dequeue.cpp │ ├── Queue.py │ └── Queue_Circular.py │ ├── Stack │ ├── Stack.py │ └── Stack_Linked_List.py │ ├── Trees │ ├── Binary_Search_Tree.py │ ├── Fenwick_tree.cpp │ ├── basic_structure_tree.py │ ├── identical_tree.py │ └── trie.py │ └── segment_tree.py ├── Deployment-scripts ├── django-autohost │ ├── README.md │ ├── host.sh │ └── remove.sh ├── node-express-autohost │ ├── README.md │ └── host.sh └── react-autohost │ ├── add-to-existing.sh │ ├── host.sh │ └── readme.md ├── Downloaders └── src │ ├── Video-to-MP3 Converter │ └── video-to-mp3.py │ └── Youtube mp3 downloader │ ├── simplest_youtube_downloader │ └── ytdownload.py │ ├── youtube-dl.exe │ └── ytd.py ├── FTP_Stuff └── src │ └── ftb_lib │ └── ftblib_BasicFTP_Server.py ├── Games ├── Snake Game │ ├── README.md │ ├── assets │ │ ├── images │ │ │ └── icon │ │ │ │ ├── Pynake_Icon.png │ │ │ │ ├── snake.ico │ │ │ │ └── snake.jpg │ │ └── sounds │ │ │ ├── game_music_2.wav │ │ │ └── sound_effects │ │ │ ├── Snake_Bite.wav │ │ │ ├── game_going.wav │ │ │ ├── game_over.wav │ │ │ └── got_apple.wav │ ├── snake.exe │ └── snake.py └── Tic-tac-toe │ └── tic_tac_toe.py ├── Graph_Algorithms ├── BELLMAN FORD ├── DSU │ └── DSU.java ├── Dijkstra's single source shortest path ├── Prims │ └── Prims.java ├── Topological_sort_algorithm ├── cycle in an undirected graph └── src │ ├── Bellmen_Ford_Algorithm │ └── Bellmen_Ford.cpp │ ├── Breadth_First_Traversal │ ├── BFS.py │ └── BFS_Algo.py │ ├── Depth_First_Traversal │ └── DFS.py │ ├── Dijkstra │ ├── Dijkstra.py │ └── dijkstra.py │ ├── Floyd_Warshall.cpp │ ├── Kosaraju │ └── StronglyConnected.py │ ├── Kruskal │ ├── Kruskal.py │ └── Kruskal.test.py │ └── Length_of_cycles │ └── length_of_cycles.py ├── Image_Processing └── src │ ├── Binary_Image │ └── Binary_Image.m │ ├── Filters │ └── src │ │ ├── gabor filter │ │ ├── frequest.py │ │ ├── gabor_enhancement.py │ │ ├── image_enhance.py │ │ ├── images │ │ │ ├── 01.jpg │ │ │ ├── 1.jpg │ │ │ ├── 2.jpg │ │ │ └── li1.bmp │ │ ├── ridge_filter.py │ │ ├── ridge_freq.py │ │ ├── ridge_orient.py │ │ └── ridge_segment.py │ │ ├── gaussian_filter │ │ └── gaussian_filter.py │ │ ├── median_filter │ │ ├── Median_Filter.c │ │ ├── README.md │ │ └── median_filter.py │ │ └── wahab filter │ │ ├── ppf1.png │ │ └── wahab.py │ ├── Geometric_transforms │ ├── people.jpg │ └── spherical_transform.py │ ├── Grayscale-Image-Encryption │ ├── Project_Code.py │ ├── ambtc.jpg │ ├── baboon.jpg │ ├── boat.png │ ├── download.jpg │ └── train.jpeg │ ├── Image_To_Sketch │ ├── MM2.png │ ├── MM6.jpeg │ ├── README.md │ ├── combined.png │ ├── image_2_sketch.py │ └── output.png │ ├── basics │ ├── basic.py │ ├── mirror.py │ └── sort_pixels.py │ ├── cropping │ ├── Resizing.py │ └── crop.py │ ├── drawing_on_image │ ├── Drawing-shapes-on-image │ │ └── drawing_shapes.py │ └── write-text-on-image │ │ └── write_on_image.py │ ├── edge_detection │ ├── Contra-Harmonic-Mean-Filter │ │ └── contra.py │ ├── harris_corner_detection │ │ └── harris_corner_detection.py │ ├── hough_line_edge_detector │ │ └── hough_line_edge_detector.py │ └── sobel_edge_detection │ │ └── sobel_edge_detection.py │ ├── get_perspective │ ├── README.md │ ├── img.jpg │ └── script.py │ ├── image_sort_python │ └── imgsort.py │ └── local binary pattern │ └── lbp.py ├── Json_Parser └── src │ └── Java │ ├── jsonHelper.java │ └── jsonHelperArray.java ├── Machine_Learning ├── Anime Recommendation │ ├── Anime_Recommender_using_KNN.ipynb │ └── anime.csv ├── logisticRegression.py └── src │ ├── Artiificial Neural Network │ ├── Churn_Modelling.csv │ ├── Digit Recogniser.ipynb │ └── ann.py │ ├── Association Rule Learning │ ├── Apriori │ │ ├── __init__.py │ │ ├── apriori.py │ │ └── apyori.py │ ├── Eclat │ │ ├── __init__.py │ │ └── eclat.py │ ├── Market_Basket_Optimisation.csv │ └── README.md │ ├── CNN_ResNet50 │ ├── intel_image.ipynb │ └── readme.md │ ├── DBSCAN │ └── DBSCAN.py │ ├── Decision_Trees │ ├── DecisionTreeClassifier.py │ └── README.md │ ├── Deep Learning │ └── cyclegan │ │ ├── cyclegan.ipynb │ │ ├── horse.avi │ │ ├── readme.md │ │ └── zebra.avi │ ├── EM_Algorithm │ └── main_colors_image │ │ ├── get_main_colors_from_image.py │ │ └── images │ │ ├── 22.jpg │ │ ├── 29.jpg │ │ ├── 8.jpg │ │ ├── azul.jpg │ │ └── v1.jpg │ ├── Employee Attrition Rate Prediction │ ├── .ipynb_checkpoints │ │ └── Employee_Attrition_Rate-checkpoint.ipynb │ ├── Dataset │ │ ├── Test.csv │ │ ├── Train.csv │ │ └── sample_submission.csv │ ├── EMPLOYEE ATTRITION RATE PREDICTION.pdf │ ├── EMPLOYEE ATTRITION RATE PREDICTION.zip │ ├── Employee_Attrition_Rate.ipynb │ └── submission.csv │ ├── Gradient_Descent │ └── gradientDescent.py │ ├── Hierarchical Clustering │ ├── Dendogram.PNG │ ├── Hierarchical_Clustering.py │ ├── Mall_Customers.csv │ ├── README.md │ └── Results.PNG │ ├── LDA │ └── lda.py │ ├── Linear_Regression │ ├── Linear_Regression.py │ └── SimpleLinearRegression.py │ ├── MNIST_Classification_Using_Perceptron │ └── perceptron_mnist.py │ ├── MNIST_using_CNN │ └── mnist.py │ ├── Multivariate_Linear_Regression │ ├── MultivariateLinearRegression.py │ └── student.csv │ ├── NLP │ ├── NLP.py │ ├── Restaurant_Reviews.tsv │ ├── SignGAN │ │ ├── Architecture-1 (Transformer).pdf │ │ ├── bert_utils.py │ │ ├── models │ │ │ └── multi_cased_L-12_H-768_A-12 │ │ │ │ └── README.md │ │ ├── phoenix-2014-T.v3 │ │ │ └── README.md │ │ ├── readme.md │ │ ├── signgan.ipynb │ │ ├── train.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── conv_attention.py │ │ │ ├── discriminator.py │ │ │ ├── errors.py │ │ │ ├── generator.py │ │ │ ├── losses.py │ │ │ └── video.py │ └── nlp.r │ ├── Random_Forests │ ├── README.md │ └── RandomForests.py │ ├── Upper_Bound_Confidence │ └── upperBoundConfidence.go │ ├── VGG16 │ ├── README.md │ ├── imgs │ │ └── vggnet_table1.png │ └── vgg_tf2.py │ ├── a_star │ └── a_star.py │ ├── kMeans_Clustering │ └── k_means_clustering.py │ └── kNN_Classifier │ └── KNNClassifier.py ├── Mathematical_Algorithms └── src │ ├── Armstrong_Number.py │ ├── Binomial_Coefficient.py │ ├── Decimal_To_Binary.py │ ├── Decimal_to_Hexadecimal.py │ ├── Discriminant.py │ ├── GCD_Using_Euclid's_Algorithm_For_Array.py │ ├── Integer_Partition_Function.py │ ├── Kadane_Algorithm.py │ ├── Knuth_Operation.py │ ├── Miller_Rabin.py │ ├── Modular_Inverse.py │ ├── NewtonZeroFinder.py │ ├── PI_Monte_Carlo.py │ ├── Palindrome.py │ ├── Prime_Factors.cpp │ ├── RectangleOperations.py │ ├── Sieve_of_Eratosthenes.cpp │ ├── Sieve_of_Eratosthenes.py │ ├── TowerOfHanoi.py │ ├── Zeckendrof's_Theorem.py │ ├── baseconversion from base 2 to 32.py │ ├── factors_of_number.py │ ├── fibonacci_generator.py │ ├── floyd_warshall.py │ ├── infix_to_postfix.py │ ├── infix_to_prefix.py │ ├── modular_exponentiation.py │ ├── postfix_evaluation.py │ ├── prefix_evaluation.py │ ├── shortest_path_algo.py │ └── topological_sort.py ├── PULL_REQUEST_TEMPLATE.md ├── Pattern_Matching └── src │ ├── Boyer_Moore.cpp │ ├── Finite Automata Pattern searching │ ├── Floyd Warshall Algorithm │ ├── KMP_Pattern_Matching.java │ ├── Manacher's Algo │ ├── Rabin_Karp.cpp │ ├── Z_Function_Efficient_Approach.cpp │ └── Z_function_Naive_Approach.cpp └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | /manga 2 | .DS_Store 3 | .idea/ -------------------------------------------------------------------------------- /Arrays-Sorting/src/BogoSort/BogoSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/BogoSort/BogoSort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Bubble_Sort/Bubble_Sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Bubble_Sort/Bubble_Sort.go -------------------------------------------------------------------------------- /Arrays-Sorting/src/Bubble_Sort/Bubble_Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Bubble_Sort/Bubble_Sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Bubble_Sort/optimzedBubbleSort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Bubble_Sort/optimzedBubbleSort -------------------------------------------------------------------------------- /Arrays-Sorting/src/Bucket_Sort/Bucket_Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Bucket_Sort/Bucket_Sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Cocktail_Sort/Cocktail_Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Cocktail_Sort/Cocktail_Sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Comb_Sort/Comb_Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Comb_Sort/Comb_Sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Counting Sort/counting_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Counting Sort/counting_sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Heap_Sort/.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | *.pyc 3 | env 4 | -------------------------------------------------------------------------------- /Arrays-Sorting/src/Heap_Sort/heap_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Heap_Sort/heap_sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Insertion_Sort/Insertion_Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Insertion_Sort/Insertion_Sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Iterative_Merge_Sort/Iterative_Merge_Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Iterative_Merge_Sort/Iterative_Merge_Sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/MonkeySort/monkey_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/MonkeySort/monkey_sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/PatienceSort/patience_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/PatienceSort/patience_sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Pigeon_hole/pigeon_hole.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Pigeon_hole/pigeon_hole.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Quick_Sort/simple_quick_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Quick_Sort/simple_quick_sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Quick_sort/quick_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Quick_sort/quick_sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Radix_Sort/Radix_Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Radix_Sort/Radix_Sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Recursive_Bubble_Sort/Recursive_Bubble_Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Recursive_Bubble_Sort/Recursive_Bubble_Sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Selection_Sort/selection_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Selection_Sort/selection_sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Shell_Sort/Shell_Sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Shell_Sort/Shell_Sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/Topological Sort/topological_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/Topological Sort/topological_sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/merge_sort/merge_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/merge_sort/merge_sort.py -------------------------------------------------------------------------------- /Arrays-Sorting/src/oddEvenSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-Sorting/src/oddEvenSort.py -------------------------------------------------------------------------------- /Arrays-searching/src/binary_search/BinarySearch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-searching/src/binary_search/BinarySearch.java -------------------------------------------------------------------------------- /Arrays-searching/src/binary_search/Recursive_Binary_Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-searching/src/binary_search/Recursive_Binary_Search.py -------------------------------------------------------------------------------- /Arrays-searching/src/binary_search/binary_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-searching/src/binary_search/binary_search.py -------------------------------------------------------------------------------- /Arrays-searching/src/exponential_search/exponenrtial_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-searching/src/exponential_search/exponenrtial_search.py -------------------------------------------------------------------------------- /Arrays-searching/src/fibonacci_search/Fibonacci_Search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-searching/src/fibonacci_search/Fibonacci_Search.py -------------------------------------------------------------------------------- /Arrays-searching/src/fibonacci_search/fib_simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-searching/src/fibonacci_search/fib_simple.go -------------------------------------------------------------------------------- /Arrays-searching/src/interpolation_search/interpolation_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-searching/src/interpolation_search/interpolation_search.py -------------------------------------------------------------------------------- /Arrays-searching/src/jump_search/jumpSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-searching/src/jump_search/jumpSearch.py -------------------------------------------------------------------------------- /Arrays-searching/src/linear_search/linear_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-searching/src/linear_search/linear_search.py -------------------------------------------------------------------------------- /Arrays-searching/src/linear_search_recursion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-searching/src/linear_search_recursion.py -------------------------------------------------------------------------------- /Arrays-searching/src/tenary_search/ternary_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Arrays-searching/src/tenary_search/ternary_search.py -------------------------------------------------------------------------------- /Automation/src/9gag_downloader/9gag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/9gag_downloader/9gag.py -------------------------------------------------------------------------------- /Automation/src/Auto_Backup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Auto_Backup/README.md -------------------------------------------------------------------------------- /Automation/src/Auto_Backup/auto_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Auto_Backup/auto_backup.py -------------------------------------------------------------------------------- /Automation/src/Auto_Tweet/AutoTweet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Auto_Tweet/AutoTweet.py -------------------------------------------------------------------------------- /Automation/src/Codeforces_automatic_contest_notifier/codeforces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Codeforces_automatic_contest_notifier/codeforces.js -------------------------------------------------------------------------------- /Automation/src/Comic_Downloader/comic_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Comic_Downloader/comic_downloader.py -------------------------------------------------------------------------------- /Automation/src/Connect_to_openvpn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Connect_to_openvpn/README.md -------------------------------------------------------------------------------- /Automation/src/Connect_to_openvpn/connet_to_vpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Connect_to_openvpn/connet_to_vpn.sh -------------------------------------------------------------------------------- /Automation/src/Cookie_Clicker/CookieClicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Cookie_Clicker/CookieClicker.py -------------------------------------------------------------------------------- /Automation/src/FB wishes autoreplier/autowish.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/FB wishes autoreplier/autowish.py -------------------------------------------------------------------------------- /Automation/src/General_Scraper/general_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/General_Scraper/general_scraper.py -------------------------------------------------------------------------------- /Automation/src/Github-username-generator-checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Github-username-generator-checker/README.md -------------------------------------------------------------------------------- /Automation/src/Github-username-generator-checker/github-username-generator-checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Github-username-generator-checker/github-username-generator-checker.py -------------------------------------------------------------------------------- /Automation/src/Linkedin_Automation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Linkedin_Automation/README.md -------------------------------------------------------------------------------- /Automation/src/Linkedin_Automation/linkedin_automation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Linkedin_Automation/linkedin_automation.py -------------------------------------------------------------------------------- /Automation/src/Manga_Downloader/MangaDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Manga_Downloader/MangaDownloader.py -------------------------------------------------------------------------------- /Automation/src/Manga_Downloader/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Manga_Downloader/Pipfile -------------------------------------------------------------------------------- /Automation/src/Manga_Downloader/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Manga_Downloader/Pipfile.lock -------------------------------------------------------------------------------- /Automation/src/Manga_Downloader/fanfox_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Manga_Downloader/fanfox_downloader.py -------------------------------------------------------------------------------- /Automation/src/Manga_Downloader/manga_reader_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Manga_Downloader/manga_reader_downloader.py -------------------------------------------------------------------------------- /Automation/src/Manga_Downloader/mangarock_Downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Manga_Downloader/mangarock_Downloader.py -------------------------------------------------------------------------------- /Automation/src/Multiple_Azure_VM/azure-cli-lab-environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Multiple_Azure_VM/azure-cli-lab-environment.sh -------------------------------------------------------------------------------- /Automation/src/Screenshots_and_image_recognition_using_pyautogui/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Screenshots_and_image_recognition_using_pyautogui/Readme.md -------------------------------------------------------------------------------- /Automation/src/Screenshots_and_image_recognition_using_pyautogui/click.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Screenshots_and_image_recognition_using_pyautogui/click.gif -------------------------------------------------------------------------------- /Automation/src/Screenshots_and_image_recognition_using_pyautogui/navigate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Screenshots_and_image_recognition_using_pyautogui/navigate.gif -------------------------------------------------------------------------------- /Automation/src/Screenshots_and_image_recognition_using_pyautogui/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Screenshots_and_image_recognition_using_pyautogui/script.py -------------------------------------------------------------------------------- /Automation/src/Screenshots_and_image_recognition_using_pyautogui/u_torrent.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Screenshots_and_image_recognition_using_pyautogui/u_torrent.PNG -------------------------------------------------------------------------------- /Automation/src/Scripts_For_Stackoverflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Scripts_For_Stackoverflow/README.md -------------------------------------------------------------------------------- /Automation/src/Scripts_For_Stackoverflow/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Scripts_For_Stackoverflow/run.py -------------------------------------------------------------------------------- /Automation/src/Weather-update-automation/weather-app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/Weather-update-automation/weather-app.py -------------------------------------------------------------------------------- /Automation/src/checkmousepos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/checkmousepos.py -------------------------------------------------------------------------------- /Automation/src/convert_video_to_webm/FFMPEG/Download FFMPEG to here: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/convert_video_to_webm/FFMPEG/Download FFMPEG to here -------------------------------------------------------------------------------- /Automation/src/convert_video_to_webm/videoConversion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/convert_video_to_webm/videoConversion.py -------------------------------------------------------------------------------- /Automation/src/desktop_automation_scripts/automation of mouse and keyboard using python/src.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/desktop_automation_scripts/automation of mouse and keyboard using python/src.py -------------------------------------------------------------------------------- /Automation/src/email_sender/email_sender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/email_sender/email_sender.py -------------------------------------------------------------------------------- /Automation/src/execution_timer/et.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/execution_timer/et.py -------------------------------------------------------------------------------- /Automation/src/fb_login_test/fb_login_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/fb_login_test/fb_login_test.py -------------------------------------------------------------------------------- /Automation/src/google_scrapper/gscrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/google_scrapper/gscrap.py -------------------------------------------------------------------------------- /Automation/src/imdb_scraper/imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/imdb_scraper/imdb.py -------------------------------------------------------------------------------- /Automation/src/lyrics_fetcher/lyricsFetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/lyrics_fetcher/lyricsFetch.py -------------------------------------------------------------------------------- /Automation/src/password_checker/pwd_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/password_checker/pwd_checker.py -------------------------------------------------------------------------------- /Automation/src/python-recyclebin/auto_clear_recyclebin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/python-recyclebin/auto_clear_recyclebin.py -------------------------------------------------------------------------------- /Automation/src/take-a-break.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/take-a-break.py -------------------------------------------------------------------------------- /Automation/src/treat_names_here/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/treat_names_here/README.md -------------------------------------------------------------------------------- /Automation/src/treat_names_here/treat_names_here.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/treat_names_here/treat_names_here.py -------------------------------------------------------------------------------- /Automation/src/user_geo_location/ugl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Automation/src/user_geo_location/ugl.py -------------------------------------------------------------------------------- /Backtracking/Rat_In_A_Maze/Rat_In_A_Maze.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Backtracking/Rat_In_A_Maze/Rat_In_A_Maze.java -------------------------------------------------------------------------------- /Backtracking/Sudoku Solver/Sudoku_solver_backtracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Backtracking/Sudoku Solver/Sudoku_solver_backtracking.py -------------------------------------------------------------------------------- /Cryptography/src/Base64_Converter/base64_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/Base64_Converter/base64_converter.py -------------------------------------------------------------------------------- /Cryptography/src/Caesar/Brutus/brutus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/Caesar/Brutus/brutus.py -------------------------------------------------------------------------------- /Cryptography/src/Caesar/ROT13/ROT13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/Caesar/ROT13/ROT13.py -------------------------------------------------------------------------------- /Cryptography/src/Caesar/SPM/SPM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/Caesar/SPM/SPM.cpp -------------------------------------------------------------------------------- /Cryptography/src/Caesar/Simple_Caesar/caesarcrypto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/Caesar/Simple_Caesar/caesarcrypto.go -------------------------------------------------------------------------------- /Cryptography/src/Caesar/Simple_Caesar/caesarcrypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/Caesar/Simple_Caesar/caesarcrypto.py -------------------------------------------------------------------------------- /Cryptography/src/Caesar/Simple_Caesar/caesarcrypto_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/Caesar/Simple_Caesar/caesarcrypto_test.go -------------------------------------------------------------------------------- /Cryptography/src/Caesar/Simple_Caesar/little_more_advanced_bruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/Caesar/Simple_Caesar/little_more_advanced_bruteforce.py -------------------------------------------------------------------------------- /Cryptography/src/Enigma_Machine/enigma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/Enigma_Machine/enigma.py -------------------------------------------------------------------------------- /Cryptography/src/Keyword Cipher/keyword_cipher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/Keyword Cipher/keyword_cipher.py -------------------------------------------------------------------------------- /Cryptography/src/MD5_Convertor/md5_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/MD5_Convertor/md5_converter.py -------------------------------------------------------------------------------- /Cryptography/src/Password_Generator/pass_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/Password_Generator/pass_gen.py -------------------------------------------------------------------------------- /Cryptography/src/Public_Key_Cryptography_Standards/pkcs7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/Public_Key_Cryptography_Standards/pkcs7.py -------------------------------------------------------------------------------- /Cryptography/src/RSA/PKCS1_OAEP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/RSA/PKCS1_OAEP.py -------------------------------------------------------------------------------- /Cryptography/src/RSA/RSA_simple.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/RSA/RSA_simple.ipynb -------------------------------------------------------------------------------- /Cryptography/src/RSA/generate_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/RSA/generate_key.py -------------------------------------------------------------------------------- /Cryptography/src/RailFenceCipher/generic_rail_fence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/RailFenceCipher/generic_rail_fence.py -------------------------------------------------------------------------------- /Cryptography/src/RailFenceCipher/rf.py: -------------------------------------------------------------------------------- 1 | https://github.com/codezoned/ScriptsDump -------------------------------------------------------------------------------- /Cryptography/src/Repeating_Key_XOR/Repeating_key_xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/Repeating_Key_XOR/Repeating_key_xor.py -------------------------------------------------------------------------------- /Cryptography/src/Single_Byte_XOR/single_byte_xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Cryptography/src/Single_Byte_XOR/single_byte_xor.py -------------------------------------------------------------------------------- /Data_Structure/src/Linked Lists/Doubly_Linked_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Data_Structure/src/Linked Lists/Doubly_Linked_list.py -------------------------------------------------------------------------------- /Data_Structure/src/Linked Lists/Floyd’s Cycle-Finding Algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Data_Structure/src/Linked Lists/Floyd’s Cycle-Finding Algorithm -------------------------------------------------------------------------------- /Data_Structure/src/Linked Lists/Singly_Linked_List.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Data_Structure/src/Linked Lists/Singly_Linked_List.py -------------------------------------------------------------------------------- /Data_Structure/src/Linked Lists/circular_linked_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Data_Structure/src/Linked Lists/circular_linked_list.py -------------------------------------------------------------------------------- /Data_Structure/src/Queue/Dequeue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Data_Structure/src/Queue/Dequeue.cpp -------------------------------------------------------------------------------- /Data_Structure/src/Queue/Queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Data_Structure/src/Queue/Queue.py -------------------------------------------------------------------------------- /Data_Structure/src/Queue/Queue_Circular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Data_Structure/src/Queue/Queue_Circular.py -------------------------------------------------------------------------------- /Data_Structure/src/Stack/Stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Data_Structure/src/Stack/Stack.py -------------------------------------------------------------------------------- /Data_Structure/src/Stack/Stack_Linked_List.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Data_Structure/src/Stack/Stack_Linked_List.py -------------------------------------------------------------------------------- /Data_Structure/src/Trees/Binary_Search_Tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Data_Structure/src/Trees/Binary_Search_Tree.py -------------------------------------------------------------------------------- /Data_Structure/src/Trees/Fenwick_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Data_Structure/src/Trees/Fenwick_tree.cpp -------------------------------------------------------------------------------- /Data_Structure/src/Trees/basic_structure_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Data_Structure/src/Trees/basic_structure_tree.py -------------------------------------------------------------------------------- /Data_Structure/src/Trees/identical_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Data_Structure/src/Trees/identical_tree.py -------------------------------------------------------------------------------- /Data_Structure/src/Trees/trie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Data_Structure/src/Trees/trie.py -------------------------------------------------------------------------------- /Data_Structure/src/segment_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Data_Structure/src/segment_tree.py -------------------------------------------------------------------------------- /Deployment-scripts/django-autohost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Deployment-scripts/django-autohost/README.md -------------------------------------------------------------------------------- /Deployment-scripts/django-autohost/host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Deployment-scripts/django-autohost/host.sh -------------------------------------------------------------------------------- /Deployment-scripts/django-autohost/remove.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Deployment-scripts/django-autohost/remove.sh -------------------------------------------------------------------------------- /Deployment-scripts/node-express-autohost/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Deployment-scripts/node-express-autohost/README.md -------------------------------------------------------------------------------- /Deployment-scripts/node-express-autohost/host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Deployment-scripts/node-express-autohost/host.sh -------------------------------------------------------------------------------- /Deployment-scripts/react-autohost/add-to-existing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Deployment-scripts/react-autohost/add-to-existing.sh -------------------------------------------------------------------------------- /Deployment-scripts/react-autohost/host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Deployment-scripts/react-autohost/host.sh -------------------------------------------------------------------------------- /Deployment-scripts/react-autohost/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Deployment-scripts/react-autohost/readme.md -------------------------------------------------------------------------------- /Downloaders/src/Video-to-MP3 Converter/video-to-mp3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Downloaders/src/Video-to-MP3 Converter/video-to-mp3.py -------------------------------------------------------------------------------- /Downloaders/src/Youtube mp3 downloader/simplest_youtube_downloader/ytdownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Downloaders/src/Youtube mp3 downloader/simplest_youtube_downloader/ytdownload.py -------------------------------------------------------------------------------- /Downloaders/src/Youtube mp3 downloader/youtube-dl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Downloaders/src/Youtube mp3 downloader/youtube-dl.exe -------------------------------------------------------------------------------- /Downloaders/src/Youtube mp3 downloader/ytd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Downloaders/src/Youtube mp3 downloader/ytd.py -------------------------------------------------------------------------------- /FTP_Stuff/src/ftb_lib/ftblib_BasicFTP_Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/FTP_Stuff/src/ftb_lib/ftblib_BasicFTP_Server.py -------------------------------------------------------------------------------- /Games/Snake Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Games/Snake Game/README.md -------------------------------------------------------------------------------- /Games/Snake Game/assets/images/icon/Pynake_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Games/Snake Game/assets/images/icon/Pynake_Icon.png -------------------------------------------------------------------------------- /Games/Snake Game/assets/images/icon/snake.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Games/Snake Game/assets/images/icon/snake.ico -------------------------------------------------------------------------------- /Games/Snake Game/assets/images/icon/snake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Games/Snake Game/assets/images/icon/snake.jpg -------------------------------------------------------------------------------- /Games/Snake Game/assets/sounds/game_music_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Games/Snake Game/assets/sounds/game_music_2.wav -------------------------------------------------------------------------------- /Games/Snake Game/assets/sounds/sound_effects/Snake_Bite.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Games/Snake Game/assets/sounds/sound_effects/Snake_Bite.wav -------------------------------------------------------------------------------- /Games/Snake Game/assets/sounds/sound_effects/game_going.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Games/Snake Game/assets/sounds/sound_effects/game_going.wav -------------------------------------------------------------------------------- /Games/Snake Game/assets/sounds/sound_effects/game_over.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Games/Snake Game/assets/sounds/sound_effects/game_over.wav -------------------------------------------------------------------------------- /Games/Snake Game/assets/sounds/sound_effects/got_apple.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Games/Snake Game/assets/sounds/sound_effects/got_apple.wav -------------------------------------------------------------------------------- /Games/Snake Game/snake.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Games/Snake Game/snake.exe -------------------------------------------------------------------------------- /Games/Snake Game/snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Games/Snake Game/snake.py -------------------------------------------------------------------------------- /Games/Tic-tac-toe/tic_tac_toe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Games/Tic-tac-toe/tic_tac_toe.py -------------------------------------------------------------------------------- /Graph_Algorithms/BELLMAN FORD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/BELLMAN FORD -------------------------------------------------------------------------------- /Graph_Algorithms/DSU/DSU.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/DSU/DSU.java -------------------------------------------------------------------------------- /Graph_Algorithms/Dijkstra's single source shortest path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/Dijkstra's single source shortest path -------------------------------------------------------------------------------- /Graph_Algorithms/Prims/Prims.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/Prims/Prims.java -------------------------------------------------------------------------------- /Graph_Algorithms/Topological_sort_algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/Topological_sort_algorithm -------------------------------------------------------------------------------- /Graph_Algorithms/cycle in an undirected graph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/cycle in an undirected graph -------------------------------------------------------------------------------- /Graph_Algorithms/src/Bellmen_Ford_Algorithm/Bellmen_Ford.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/src/Bellmen_Ford_Algorithm/Bellmen_Ford.cpp -------------------------------------------------------------------------------- /Graph_Algorithms/src/Breadth_First_Traversal/BFS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/src/Breadth_First_Traversal/BFS.py -------------------------------------------------------------------------------- /Graph_Algorithms/src/Breadth_First_Traversal/BFS_Algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/src/Breadth_First_Traversal/BFS_Algo.py -------------------------------------------------------------------------------- /Graph_Algorithms/src/Depth_First_Traversal/DFS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/src/Depth_First_Traversal/DFS.py -------------------------------------------------------------------------------- /Graph_Algorithms/src/Dijkstra/Dijkstra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/src/Dijkstra/Dijkstra.py -------------------------------------------------------------------------------- /Graph_Algorithms/src/Dijkstra/dijkstra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/src/Dijkstra/dijkstra.py -------------------------------------------------------------------------------- /Graph_Algorithms/src/Floyd_Warshall.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/src/Floyd_Warshall.cpp -------------------------------------------------------------------------------- /Graph_Algorithms/src/Kosaraju/StronglyConnected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/src/Kosaraju/StronglyConnected.py -------------------------------------------------------------------------------- /Graph_Algorithms/src/Kruskal/Kruskal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/src/Kruskal/Kruskal.py -------------------------------------------------------------------------------- /Graph_Algorithms/src/Kruskal/Kruskal.test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/src/Kruskal/Kruskal.test.py -------------------------------------------------------------------------------- /Graph_Algorithms/src/Length_of_cycles/length_of_cycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Graph_Algorithms/src/Length_of_cycles/length_of_cycles.py -------------------------------------------------------------------------------- /Image_Processing/src/Binary_Image/Binary_Image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Binary_Image/Binary_Image.m -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/gabor filter/frequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/gabor filter/frequest.py -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/gabor filter/gabor_enhancement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/gabor filter/gabor_enhancement.py -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/gabor filter/image_enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/gabor filter/image_enhance.py -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/gabor filter/images/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/gabor filter/images/01.jpg -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/gabor filter/images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/gabor filter/images/1.jpg -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/gabor filter/images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/gabor filter/images/2.jpg -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/gabor filter/images/li1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/gabor filter/images/li1.bmp -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/gabor filter/ridge_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/gabor filter/ridge_filter.py -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/gabor filter/ridge_freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/gabor filter/ridge_freq.py -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/gabor filter/ridge_orient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/gabor filter/ridge_orient.py -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/gabor filter/ridge_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/gabor filter/ridge_segment.py -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/gaussian_filter/gaussian_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/gaussian_filter/gaussian_filter.py -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/median_filter/Median_Filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/median_filter/Median_Filter.c -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/median_filter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/median_filter/README.md -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/median_filter/median_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/median_filter/median_filter.py -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/wahab filter/ppf1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/wahab filter/ppf1.png -------------------------------------------------------------------------------- /Image_Processing/src/Filters/src/wahab filter/wahab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Filters/src/wahab filter/wahab.py -------------------------------------------------------------------------------- /Image_Processing/src/Geometric_transforms/people.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Geometric_transforms/people.jpg -------------------------------------------------------------------------------- /Image_Processing/src/Geometric_transforms/spherical_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Geometric_transforms/spherical_transform.py -------------------------------------------------------------------------------- /Image_Processing/src/Grayscale-Image-Encryption/Project_Code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Grayscale-Image-Encryption/Project_Code.py -------------------------------------------------------------------------------- /Image_Processing/src/Grayscale-Image-Encryption/ambtc.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Grayscale-Image-Encryption/ambtc.jpg -------------------------------------------------------------------------------- /Image_Processing/src/Grayscale-Image-Encryption/baboon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Grayscale-Image-Encryption/baboon.jpg -------------------------------------------------------------------------------- /Image_Processing/src/Grayscale-Image-Encryption/boat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Grayscale-Image-Encryption/boat.png -------------------------------------------------------------------------------- /Image_Processing/src/Grayscale-Image-Encryption/download.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Grayscale-Image-Encryption/download.jpg -------------------------------------------------------------------------------- /Image_Processing/src/Grayscale-Image-Encryption/train.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Grayscale-Image-Encryption/train.jpeg -------------------------------------------------------------------------------- /Image_Processing/src/Image_To_Sketch/MM2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Image_To_Sketch/MM2.png -------------------------------------------------------------------------------- /Image_Processing/src/Image_To_Sketch/MM6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Image_To_Sketch/MM6.jpeg -------------------------------------------------------------------------------- /Image_Processing/src/Image_To_Sketch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Image_To_Sketch/README.md -------------------------------------------------------------------------------- /Image_Processing/src/Image_To_Sketch/combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Image_To_Sketch/combined.png -------------------------------------------------------------------------------- /Image_Processing/src/Image_To_Sketch/image_2_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Image_To_Sketch/image_2_sketch.py -------------------------------------------------------------------------------- /Image_Processing/src/Image_To_Sketch/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/Image_To_Sketch/output.png -------------------------------------------------------------------------------- /Image_Processing/src/basics/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/basics/basic.py -------------------------------------------------------------------------------- /Image_Processing/src/basics/mirror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/basics/mirror.py -------------------------------------------------------------------------------- /Image_Processing/src/basics/sort_pixels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/basics/sort_pixels.py -------------------------------------------------------------------------------- /Image_Processing/src/cropping/Resizing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/cropping/Resizing.py -------------------------------------------------------------------------------- /Image_Processing/src/cropping/crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/cropping/crop.py -------------------------------------------------------------------------------- /Image_Processing/src/drawing_on_image/Drawing-shapes-on-image/drawing_shapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/drawing_on_image/Drawing-shapes-on-image/drawing_shapes.py -------------------------------------------------------------------------------- /Image_Processing/src/drawing_on_image/write-text-on-image/write_on_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/drawing_on_image/write-text-on-image/write_on_image.py -------------------------------------------------------------------------------- /Image_Processing/src/edge_detection/Contra-Harmonic-Mean-Filter/contra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/edge_detection/Contra-Harmonic-Mean-Filter/contra.py -------------------------------------------------------------------------------- /Image_Processing/src/edge_detection/harris_corner_detection/harris_corner_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/edge_detection/harris_corner_detection/harris_corner_detection.py -------------------------------------------------------------------------------- /Image_Processing/src/edge_detection/hough_line_edge_detector/hough_line_edge_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/edge_detection/hough_line_edge_detector/hough_line_edge_detector.py -------------------------------------------------------------------------------- /Image_Processing/src/edge_detection/sobel_edge_detection/sobel_edge_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/edge_detection/sobel_edge_detection/sobel_edge_detection.py -------------------------------------------------------------------------------- /Image_Processing/src/get_perspective/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/get_perspective/README.md -------------------------------------------------------------------------------- /Image_Processing/src/get_perspective/img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/get_perspective/img.jpg -------------------------------------------------------------------------------- /Image_Processing/src/get_perspective/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/get_perspective/script.py -------------------------------------------------------------------------------- /Image_Processing/src/image_sort_python/imgsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/image_sort_python/imgsort.py -------------------------------------------------------------------------------- /Image_Processing/src/local binary pattern/lbp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Image_Processing/src/local binary pattern/lbp.py -------------------------------------------------------------------------------- /Json_Parser/src/Java/jsonHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Json_Parser/src/Java/jsonHelper.java -------------------------------------------------------------------------------- /Json_Parser/src/Java/jsonHelperArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Json_Parser/src/Java/jsonHelperArray.java -------------------------------------------------------------------------------- /Machine_Learning/Anime Recommendation/Anime_Recommender_using_KNN.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/Anime Recommendation/Anime_Recommender_using_KNN.ipynb -------------------------------------------------------------------------------- /Machine_Learning/Anime Recommendation/anime.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/Anime Recommendation/anime.csv -------------------------------------------------------------------------------- /Machine_Learning/logisticRegression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/logisticRegression.py -------------------------------------------------------------------------------- /Machine_Learning/src/Artiificial Neural Network/Churn_Modelling.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Artiificial Neural Network/Churn_Modelling.csv -------------------------------------------------------------------------------- /Machine_Learning/src/Artiificial Neural Network/Digit Recogniser.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Artiificial Neural Network/Digit Recogniser.ipynb -------------------------------------------------------------------------------- /Machine_Learning/src/Artiificial Neural Network/ann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Artiificial Neural Network/ann.py -------------------------------------------------------------------------------- /Machine_Learning/src/Association Rule Learning/Apriori/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Machine_Learning/src/Association Rule Learning/Apriori/apriori.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Association Rule Learning/Apriori/apriori.py -------------------------------------------------------------------------------- /Machine_Learning/src/Association Rule Learning/Apriori/apyori.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Association Rule Learning/Apriori/apyori.py -------------------------------------------------------------------------------- /Machine_Learning/src/Association Rule Learning/Eclat/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Machine_Learning/src/Association Rule Learning/Eclat/eclat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Association Rule Learning/Eclat/eclat.py -------------------------------------------------------------------------------- /Machine_Learning/src/Association Rule Learning/Market_Basket_Optimisation.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Association Rule Learning/Market_Basket_Optimisation.csv -------------------------------------------------------------------------------- /Machine_Learning/src/Association Rule Learning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Association Rule Learning/README.md -------------------------------------------------------------------------------- /Machine_Learning/src/CNN_ResNet50/intel_image.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/CNN_ResNet50/intel_image.ipynb -------------------------------------------------------------------------------- /Machine_Learning/src/CNN_ResNet50/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/CNN_ResNet50/readme.md -------------------------------------------------------------------------------- /Machine_Learning/src/DBSCAN/DBSCAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/DBSCAN/DBSCAN.py -------------------------------------------------------------------------------- /Machine_Learning/src/Decision_Trees/DecisionTreeClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Decision_Trees/DecisionTreeClassifier.py -------------------------------------------------------------------------------- /Machine_Learning/src/Decision_Trees/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Decision_Trees/README.md -------------------------------------------------------------------------------- /Machine_Learning/src/Deep Learning/cyclegan/cyclegan.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Deep Learning/cyclegan/cyclegan.ipynb -------------------------------------------------------------------------------- /Machine_Learning/src/Deep Learning/cyclegan/horse.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Deep Learning/cyclegan/horse.avi -------------------------------------------------------------------------------- /Machine_Learning/src/Deep Learning/cyclegan/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Deep Learning/cyclegan/readme.md -------------------------------------------------------------------------------- /Machine_Learning/src/Deep Learning/cyclegan/zebra.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Deep Learning/cyclegan/zebra.avi -------------------------------------------------------------------------------- /Machine_Learning/src/EM_Algorithm/main_colors_image/get_main_colors_from_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/EM_Algorithm/main_colors_image/get_main_colors_from_image.py -------------------------------------------------------------------------------- /Machine_Learning/src/EM_Algorithm/main_colors_image/images/22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/EM_Algorithm/main_colors_image/images/22.jpg -------------------------------------------------------------------------------- /Machine_Learning/src/EM_Algorithm/main_colors_image/images/29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/EM_Algorithm/main_colors_image/images/29.jpg -------------------------------------------------------------------------------- /Machine_Learning/src/EM_Algorithm/main_colors_image/images/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/EM_Algorithm/main_colors_image/images/8.jpg -------------------------------------------------------------------------------- /Machine_Learning/src/EM_Algorithm/main_colors_image/images/azul.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/EM_Algorithm/main_colors_image/images/azul.jpg -------------------------------------------------------------------------------- /Machine_Learning/src/EM_Algorithm/main_colors_image/images/v1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/EM_Algorithm/main_colors_image/images/v1.jpg -------------------------------------------------------------------------------- /Machine_Learning/src/Employee Attrition Rate Prediction/.ipynb_checkpoints/Employee_Attrition_Rate-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Employee Attrition Rate Prediction/.ipynb_checkpoints/Employee_Attrition_Rate-checkpoint.ipynb -------------------------------------------------------------------------------- /Machine_Learning/src/Employee Attrition Rate Prediction/Dataset/Test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Employee Attrition Rate Prediction/Dataset/Test.csv -------------------------------------------------------------------------------- /Machine_Learning/src/Employee Attrition Rate Prediction/Dataset/Train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Employee Attrition Rate Prediction/Dataset/Train.csv -------------------------------------------------------------------------------- /Machine_Learning/src/Employee Attrition Rate Prediction/Dataset/sample_submission.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Employee Attrition Rate Prediction/Dataset/sample_submission.csv -------------------------------------------------------------------------------- /Machine_Learning/src/Employee Attrition Rate Prediction/EMPLOYEE ATTRITION RATE PREDICTION.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Employee Attrition Rate Prediction/EMPLOYEE ATTRITION RATE PREDICTION.pdf -------------------------------------------------------------------------------- /Machine_Learning/src/Employee Attrition Rate Prediction/EMPLOYEE ATTRITION RATE PREDICTION.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Employee Attrition Rate Prediction/EMPLOYEE ATTRITION RATE PREDICTION.zip -------------------------------------------------------------------------------- /Machine_Learning/src/Employee Attrition Rate Prediction/Employee_Attrition_Rate.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Employee Attrition Rate Prediction/Employee_Attrition_Rate.ipynb -------------------------------------------------------------------------------- /Machine_Learning/src/Employee Attrition Rate Prediction/submission.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Employee Attrition Rate Prediction/submission.csv -------------------------------------------------------------------------------- /Machine_Learning/src/Gradient_Descent/gradientDescent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Gradient_Descent/gradientDescent.py -------------------------------------------------------------------------------- /Machine_Learning/src/Hierarchical Clustering/Dendogram.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Hierarchical Clustering/Dendogram.PNG -------------------------------------------------------------------------------- /Machine_Learning/src/Hierarchical Clustering/Hierarchical_Clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Hierarchical Clustering/Hierarchical_Clustering.py -------------------------------------------------------------------------------- /Machine_Learning/src/Hierarchical Clustering/Mall_Customers.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Hierarchical Clustering/Mall_Customers.csv -------------------------------------------------------------------------------- /Machine_Learning/src/Hierarchical Clustering/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Hierarchical Clustering/README.md -------------------------------------------------------------------------------- /Machine_Learning/src/Hierarchical Clustering/Results.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Hierarchical Clustering/Results.PNG -------------------------------------------------------------------------------- /Machine_Learning/src/LDA/lda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/LDA/lda.py -------------------------------------------------------------------------------- /Machine_Learning/src/Linear_Regression/Linear_Regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Linear_Regression/Linear_Regression.py -------------------------------------------------------------------------------- /Machine_Learning/src/Linear_Regression/SimpleLinearRegression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Linear_Regression/SimpleLinearRegression.py -------------------------------------------------------------------------------- /Machine_Learning/src/MNIST_Classification_Using_Perceptron/perceptron_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/MNIST_Classification_Using_Perceptron/perceptron_mnist.py -------------------------------------------------------------------------------- /Machine_Learning/src/MNIST_using_CNN/mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/MNIST_using_CNN/mnist.py -------------------------------------------------------------------------------- /Machine_Learning/src/Multivariate_Linear_Regression/MultivariateLinearRegression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Multivariate_Linear_Regression/MultivariateLinearRegression.py -------------------------------------------------------------------------------- /Machine_Learning/src/Multivariate_Linear_Regression/student.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Multivariate_Linear_Regression/student.csv -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/NLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/NLP/NLP.py -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/Restaurant_Reviews.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/NLP/Restaurant_Reviews.tsv -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/SignGAN/Architecture-1 (Transformer).pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/NLP/SignGAN/Architecture-1 (Transformer).pdf -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/SignGAN/bert_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/NLP/SignGAN/bert_utils.py -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/SignGAN/models/multi_cased_L-12_H-768_A-12/README.md: -------------------------------------------------------------------------------- 1 | Multilingual BERT was used as German Text Encoder 2 | -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/SignGAN/phoenix-2014-T.v3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/NLP/SignGAN/phoenix-2014-T.v3/README.md -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/SignGAN/readme.md: -------------------------------------------------------------------------------- 1 | # SignGAN 2 | -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/SignGAN/signgan.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/NLP/SignGAN/signgan.ipynb -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/SignGAN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/NLP/SignGAN/train.py -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/SignGAN/utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/SignGAN/utils/conv_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/NLP/SignGAN/utils/conv_attention.py -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/SignGAN/utils/discriminator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/NLP/SignGAN/utils/discriminator.py -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/SignGAN/utils/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/NLP/SignGAN/utils/errors.py -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/SignGAN/utils/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/NLP/SignGAN/utils/generator.py -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/SignGAN/utils/losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/NLP/SignGAN/utils/losses.py -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/SignGAN/utils/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/NLP/SignGAN/utils/video.py -------------------------------------------------------------------------------- /Machine_Learning/src/NLP/nlp.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/NLP/nlp.r -------------------------------------------------------------------------------- /Machine_Learning/src/Random_Forests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Random_Forests/README.md -------------------------------------------------------------------------------- /Machine_Learning/src/Random_Forests/RandomForests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Random_Forests/RandomForests.py -------------------------------------------------------------------------------- /Machine_Learning/src/Upper_Bound_Confidence/upperBoundConfidence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/Upper_Bound_Confidence/upperBoundConfidence.go -------------------------------------------------------------------------------- /Machine_Learning/src/VGG16/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/VGG16/README.md -------------------------------------------------------------------------------- /Machine_Learning/src/VGG16/imgs/vggnet_table1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/VGG16/imgs/vggnet_table1.png -------------------------------------------------------------------------------- /Machine_Learning/src/VGG16/vgg_tf2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/VGG16/vgg_tf2.py -------------------------------------------------------------------------------- /Machine_Learning/src/a_star/a_star.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/a_star/a_star.py -------------------------------------------------------------------------------- /Machine_Learning/src/kMeans_Clustering/k_means_clustering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/kMeans_Clustering/k_means_clustering.py -------------------------------------------------------------------------------- /Machine_Learning/src/kNN_Classifier/KNNClassifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Machine_Learning/src/kNN_Classifier/KNNClassifier.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/Armstrong_Number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/Armstrong_Number.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/Binomial_Coefficient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/Binomial_Coefficient.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/Decimal_To_Binary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/Decimal_To_Binary.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/Decimal_to_Hexadecimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/Decimal_to_Hexadecimal.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/Discriminant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/Discriminant.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/GCD_Using_Euclid's_Algorithm_For_Array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/GCD_Using_Euclid's_Algorithm_For_Array.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/Integer_Partition_Function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/Integer_Partition_Function.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/Kadane_Algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/Kadane_Algorithm.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/Knuth_Operation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/Knuth_Operation.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/Miller_Rabin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/Miller_Rabin.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/Modular_Inverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/Modular_Inverse.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/NewtonZeroFinder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/NewtonZeroFinder.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/PI_Monte_Carlo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/PI_Monte_Carlo.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/Palindrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/Palindrome.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/Prime_Factors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/Prime_Factors.cpp -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/RectangleOperations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/RectangleOperations.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/Sieve_of_Eratosthenes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/Sieve_of_Eratosthenes.cpp -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/Sieve_of_Eratosthenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/Sieve_of_Eratosthenes.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/TowerOfHanoi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/TowerOfHanoi.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/Zeckendrof's_Theorem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/Zeckendrof's_Theorem.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/baseconversion from base 2 to 32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/baseconversion from base 2 to 32.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/factors_of_number.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/factors_of_number.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/fibonacci_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/fibonacci_generator.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/floyd_warshall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/floyd_warshall.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/infix_to_postfix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/infix_to_postfix.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/infix_to_prefix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/infix_to_prefix.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/modular_exponentiation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/modular_exponentiation.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/postfix_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/postfix_evaluation.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/prefix_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/prefix_evaluation.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/shortest_path_algo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/shortest_path_algo.py -------------------------------------------------------------------------------- /Mathematical_Algorithms/src/topological_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Mathematical_Algorithms/src/topological_sort.py -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /Pattern_Matching/src/Boyer_Moore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Pattern_Matching/src/Boyer_Moore.cpp -------------------------------------------------------------------------------- /Pattern_Matching/src/Finite Automata Pattern searching: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Pattern_Matching/src/Finite Automata Pattern searching -------------------------------------------------------------------------------- /Pattern_Matching/src/Floyd Warshall Algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Pattern_Matching/src/Floyd Warshall Algorithm -------------------------------------------------------------------------------- /Pattern_Matching/src/KMP_Pattern_Matching.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Pattern_Matching/src/KMP_Pattern_Matching.java -------------------------------------------------------------------------------- /Pattern_Matching/src/Manacher's Algo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Pattern_Matching/src/Manacher's Algo -------------------------------------------------------------------------------- /Pattern_Matching/src/Rabin_Karp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Pattern_Matching/src/Rabin_Karp.cpp -------------------------------------------------------------------------------- /Pattern_Matching/src/Z_Function_Efficient_Approach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Pattern_Matching/src/Z_Function_Efficient_Approach.cpp -------------------------------------------------------------------------------- /Pattern_Matching/src/Z_function_Naive_Approach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/Pattern_Matching/src/Z_function_Naive_Approach.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codezoned/ScriptsDump/HEAD/README.md --------------------------------------------------------------------------------