├── .all-contributorsrc ├── .github ├── auto_assign.yml ├── issue_template.md ├── issues_labeler.yml ├── pull_request_template.md └── workflows │ ├── auto_assign_pr.yml │ ├── codesee-arch-diagram.yml │ ├── issues_labeler.yml │ └── merged-notification.yml ├── .gitignore ├── Bash ├── Dynamic Wallpaper │ ├── README.md │ ├── dynamic_wallpaper.sh │ └── screens │ │ └── SS1.png └── README.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── JavaScript ├── Drum Kit │ ├── README.md │ ├── images │ │ ├── crash.png │ │ ├── kick.png │ │ ├── snare.png │ │ ├── tom1.png │ │ ├── tom2.png │ │ ├── tom3.png │ │ └── tom4.png │ ├── index.html │ ├── index.js │ ├── sounds │ │ ├── crash.mp3 │ │ ├── kick-bass.mp3 │ │ ├── snare.mp3 │ │ ├── tom-1.mp3 │ │ ├── tom-2.mp3 │ │ ├── tom-3.mp3 │ │ └── tom-4.mp3 │ └── styles.css ├── Javascript Calculator │ ├── JSCalc.css │ ├── JSCalc.html │ ├── JSCalc.js │ └── README.md ├── Mini Paint │ ├── README.md │ ├── index.html │ ├── output.jpg │ ├── output2.jpg │ ├── script.js │ └── styles.css ├── README.md ├── Url_Shortner │ ├── .gitignore │ ├── Readme.md │ ├── package-lock.json │ └── shortener.js ├── covid19-stats │ ├── README.md │ ├── index.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── app.js │ └── webpack.config.js ├── lorem_ipsum_generator │ ├── README.md │ ├── app.js │ ├── index.html │ └── style.css └── rock-paper-scissor │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.css │ ├── App.js │ ├── index.css │ └── index.js ├── LICENSE ├── Python ├── 2048_Stack │ ├── README.md │ ├── images │ │ ├── Logo_2.jpg │ │ ├── Startbt.jpg │ │ ├── eximt.jpg │ │ └── fullbg.jpg │ ├── main.py │ ├── requirements.txt │ └── score.json ├── CSV_to_JSON │ ├── README.md │ ├── csv_to_json.py │ └── img │ │ ├── CLI.jpg │ │ ├── after.jpg │ │ └── before.jpg ├── Clock_Application │ ├── Clock_Application.py │ ├── README.md │ ├── clock_win.ui │ └── screenshots │ │ ├── clockapp1.png │ │ ├── clockapp2.png │ │ └── clockapp3.png ├── Convert_jpg_to_png │ ├── README.md │ └── main.ipynb ├── Currencyconverter │ ├── README.md │ ├── currencyconverter.py │ └── output.png ├── Desktop Background changer │ ├── README.md │ ├── changer.py │ ├── requirements.txt │ └── screenshot.jpeg ├── Download_Audio_From_Video │ ├── config.py │ ├── images │ │ ├── 1.png │ │ └── 2.png │ ├── readme.md │ ├── requirements.txt │ └── script.py ├── Encode_Decode_Tool │ ├── README.md │ ├── Screenshots │ │ ├── Screenshot_1.png │ │ ├── Screenshot_2.png │ │ ├── Screenshot_3.png │ │ ├── Screenshot_4.png │ │ └── Screenshot_5.png │ ├── enc.py │ └── requirements.txt ├── Find Duplicate Files │ ├── README.md │ ├── dups.jpeg │ ├── finder.py │ └── test_files │ │ ├── another_file.txt │ │ ├── file_a.txt │ │ └── unique.txt ├── Folder Sorter │ ├── README.md │ ├── main.py │ └── screens │ │ └── SS1.png ├── GithubScraper │ ├── README.md │ ├── assets │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ └── 5.png │ ├── requirements.txt │ └── scraper.py ├── Github_User_Details │ ├── README.md │ ├── functions.py │ ├── github.png │ ├── gui.py │ ├── main.py │ ├── requirements.txt │ ├── screenshot_cli.png │ ├── screenshot_gui.png │ └── search.png ├── HTML_TO_MARKUP │ ├── README.md │ ├── html.png │ ├── main.py │ ├── md.png │ └── requirements.txt ├── Hyperlink_Extractor │ ├── README.md │ ├── code.js │ ├── images │ │ ├── cmd.png │ │ └── gui.png │ ├── links.py │ ├── links_test.py │ ├── text.txt │ └── ui.py ├── Image to ASCII converter │ ├── README.md │ └── converter.py ├── Image_To_Sketch │ ├── MM2.png │ ├── MM6.jpeg │ ├── README.md │ ├── combined.png │ ├── image_2_sketch.py │ └── output.png ├── Imgur_Album_Downloader │ ├── README.md │ ├── main.py │ ├── requirements.txt │ └── screens │ │ └── SS1.png ├── Insta Non Followers │ ├── README.md │ ├── ScreenShots │ │ ├── screenshot1.png │ │ └── screenshot2.png │ ├── main.py │ └── requirements.txt ├── Insta Post By Location │ ├── README.md │ ├── ScreenShots │ │ ├── screenshot1.png │ │ └── screenshot2.png │ ├── help2.jpeg │ ├── help3.jpeg │ ├── help4.jpeg │ ├── main.py │ ├── media │ │ ├── images │ │ │ └── image_example.jpg │ │ └── videos │ │ │ └── video_example.mp4 │ └── requirements.txt ├── InstaScraper │ ├── README.md │ ├── chromedriver.exe │ ├── images │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ └── 7.png │ ├── profiles │ │ ├── cristiano │ │ │ ├── cristiano.png │ │ │ └── cristiano.txt │ │ └── instagram │ │ │ ├── instagram.png │ │ │ └── instagram.txt │ ├── requirements.txt │ ├── scraper.py │ └── utils.py ├── Invisible Cloak │ ├── README.md │ ├── Screenshot.png │ ├── invisible.py │ └── requirements.txt ├── Mail_Sender_GUI │ ├── README.md │ ├── logo.png │ ├── main.py │ └── requirements.txt ├── Mass_Mail_Sender │ ├── README.md │ └── mail.py ├── Medium_Articles_to_Text │ ├── README.md │ ├── requirements.txt │ ├── script.py │ └── script_execution.png ├── Movie_Recommendation_System │ ├── README.md │ ├── genres.py │ ├── movie_recommendation_system.py │ ├── movies.py │ ├── requirements.txt │ └── usage.gif ├── Movie_Sub_Downloader │ ├── README.md │ ├── main.py │ ├── requirements.txt │ └── screens │ │ └── SS1.png ├── OTP │ ├── README.md │ ├── otp.py │ ├── otp_2_clipboard.jpeg │ └── requirements.txt ├── PDF_watermaker │ ├── Pipfile │ ├── Pipfile.lock │ ├── README.md │ ├── lorem-ipsum.pdf │ ├── main.py │ ├── pdf_in.png │ ├── pdf_out.png │ ├── requirement.txt │ └── watermark.png ├── Paint Application │ ├── README.md │ ├── main.py │ └── screenshot.png ├── Password_Strength_Checker │ ├── README.md │ ├── output.png │ └── script.py ├── Pdf_Reader │ ├── README.md │ ├── reader.png │ ├── reader.py │ ├── reader_GUI.py │ └── requirements.txt ├── Ping_Pong_Game │ ├── README.md │ ├── bounce.wav │ ├── pingpong.mp4 │ ├── pingpong.py │ └── requirements.txt ├── Port_Scanner_with_Multithreading │ ├── README.md │ ├── ip_ad.cfg │ ├── port_scanner.py │ └── script_execution.png ├── QRCODE_Generator_and_Reader │ ├── Screenshot 1.png │ ├── Screenshot 2.png │ ├── main.py │ └── readme.md ├── Quiz │ ├── README.md │ ├── images │ │ ├── quiz_app.png │ │ ├── sample_ace.png │ │ ├── sample_question_file.png │ │ ├── sample_score.png │ │ └── sample_wrong.png │ ├── quiz.py │ └── quiz_questions.csv ├── README.md ├── Reddit_Scraper │ ├── README.md │ ├── oneliners.json │ ├── requirements.txt │ └── scraper.py ├── Related Hashtags │ ├── README.md │ ├── ScreenShots │ │ ├── screenshot1.png │ │ └── screenshot2.png │ ├── main.py │ └── requirements.txt ├── Scrap Insta Post via Hashtag │ ├── README.md │ ├── ScreenShots │ │ ├── screenshot1.png │ │ └── screenshot2.png │ ├── main.py │ ├── media │ │ ├── images │ │ │ └── image_example.jpg │ │ └── videos │ │ │ └── video_example.mp4 │ └── requirements.txt ├── Scrap Links │ ├── README.md │ ├── page_links │ │ ├── Google_Summer_of_Code_Archive.txt │ │ ├── Hacktoberfest_presented_by_DigitalOcean.txt │ │ └── PyTorch.txt │ ├── requirements.txt │ ├── script.py │ └── script_execution.jpg ├── Scrap_Email │ ├── README.md │ ├── output.png │ ├── requirements.txt │ └── scrap_email.py ├── Screen Recorder │ ├── README.md │ ├── Recording.avi │ ├── capture.svg │ ├── captureIT.py │ ├── captureIT_img.jpg │ ├── pause.svg │ ├── record.png │ ├── screenshot.jpg │ └── stop.svg ├── ScreenShot Taker │ ├── image1.png │ ├── output.py │ ├── save.ui │ ├── screenshot_taker.py │ └── test.py ├── Send SMS │ ├── README.md │ ├── requirements.txt │ ├── send_sms.py │ └── successful.jpeg ├── 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.py ├── Text_Summarize │ ├── README.md │ ├── backend.py │ ├── frontend.py │ ├── main.py │ ├── requirements.txt │ └── screenshot.png ├── Text_from_image │ ├── Screenshot.png │ ├── main.py │ └── readme.md ├── Typing_Speed_Test │ ├── README.md │ └── typing_speed_test.py ├── URL_Shortner │ ├── Readme.md │ └── shortener.py ├── Website_Blocker │ ├── README.md │ └── blocker.pyw ├── Youtube_Video_Audio_Downloader │ ├── README.md │ └── streams.py ├── Youtube_Video_Downloader │ ├── README.md │ ├── YT_Vid_Download.py │ ├── bg-img.jpg │ └── requirements.txt ├── Zip Folder Application │ ├── README.md │ ├── ZipFileGUI.png │ └── zip.py ├── angry-birds-python │ ├── LICENSE │ ├── README.md │ ├── _config.yml │ ├── requirements.txt │ ├── resources │ │ ├── images │ │ │ ├── Buttons.png │ │ │ ├── angry-birds-image.png │ │ │ ├── angry_birds.png │ │ │ ├── angry_birds_chrome_pigs_by_chinzapep-d5bnxdz.png │ │ │ ├── angry_birds_toons_sprites_by_jared33-d64u29w.png │ │ │ ├── background.png │ │ │ ├── background1.jpg │ │ │ ├── background2.jpg │ │ │ ├── background3.png │ │ │ ├── background4.png │ │ │ ├── buttons-image.png │ │ │ ├── column.png │ │ │ ├── full-sprite.png │ │ │ ├── gravity-zero.png │ │ │ ├── latest.png │ │ │ ├── pig_failed.png │ │ │ ├── red-bird.png │ │ │ ├── red-bird2.png │ │ │ ├── red-bird3.png │ │ │ ├── selected-buttons.png │ │ │ ├── sling-2.png │ │ │ ├── sling-3.png │ │ │ ├── sling.png │ │ │ ├── stars-edited.png │ │ │ ├── stars.png │ │ │ ├── walls.png │ │ │ ├── wood.png │ │ │ └── wood2.png │ │ └── sounds │ │ │ └── angry-birds.ogg │ └── src │ │ ├── __pycache__ │ │ ├── characters.cpython-37.pyc │ │ ├── level.cpython-37.pyc │ │ └── polygon.cpython-37.pyc │ │ ├── characters.py │ │ ├── level.py │ │ ├── main.py │ │ └── polygon.py ├── coronavirus-stats │ ├── README.md │ └── main.py ├── covid_19 │ ├── README.md │ ├── c-19 map.gif │ ├── dataset_(by ~ john hopkins UNIV.) │ │ └── time_series_covid19_confirmed_global.csv │ ├── map.py │ ├── maps │ │ ├── World_Map.cpg │ │ ├── World_Map.dbf │ │ ├── World_Map.prj │ │ ├── World_Map.sbn │ │ ├── World_Map.sbx │ │ ├── World_Map.shp │ │ └── World_Map.shx │ └── requirements.txt ├── csv-to-xlsx │ ├── README.md │ ├── csv-to-xlsx.py │ ├── execution-output.png │ └── requirements.txt ├── delete_empty_folders │ ├── README.md │ ├── gen_folder.sh │ ├── script.py │ ├── script_execution1.png │ └── script_execution2.png ├── dinosaur_game │ ├── Assets │ │ ├── Bird │ │ │ ├── Bird1.png │ │ │ └── Bird2.png │ │ ├── Cactus │ │ │ ├── LargeCactus1.png │ │ │ ├── LargeCactus2.png │ │ │ ├── LargeCactus3.png │ │ │ ├── SmallCactus1.png │ │ │ ├── SmallCactus2.png │ │ │ └── SmallCactus3.png │ │ ├── Dino │ │ │ ├── DinoDead.png │ │ │ ├── DinoDuck1.png │ │ │ ├── DinoDuck2.png │ │ │ ├── DinoJump.png │ │ │ ├── DinoRun1.png │ │ │ ├── DinoRun2.png │ │ │ └── DinoStart.png │ │ └── Other │ │ │ ├── Cloud.png │ │ │ ├── GameOver.png │ │ │ ├── Reset.png │ │ │ └── Track.png │ ├── Images │ │ ├── dinosaur-game-menu.png │ │ └── dinosaur-game-play.png │ ├── README.md │ ├── main.py │ └── requirements.txt ├── email_id_extractor │ ├── README.md │ ├── email_id_extractor.py │ ├── screenshot.png │ └── setup.py ├── english-dictionary │ ├── .gitignore │ ├── README.md │ ├── define │ ├── dictionary.csv │ ├── examples │ │ ├── define-csv-key.png │ │ ├── define-csv.png │ │ ├── dog.png │ │ ├── env.png │ │ └── human.png │ ├── requirements.txt │ └── search.py ├── find_broken_links │ ├── README.md │ ├── gui.py │ ├── link_checker.py │ ├── requirements.txt │ └── screenshots │ │ ├── Output_NoBrokenLinks.png │ │ ├── Output_WithBrokenLinks.png │ │ └── PreUsage.png ├── html_to_pdf │ ├── README.md │ ├── main.py │ └── requirements.txt ├── image-encode-decode │ ├── README.md │ ├── akatsuki.png │ ├── decrypted_img.png │ ├── encrypted_img.txt │ ├── key.txt │ ├── script.py │ └── script_execution.png ├── image_cartoonizer │ ├── Pipfile │ ├── Pipfile.lock │ ├── README.md │ ├── main.py │ ├── requirements.txt │ ├── tree-cartoon.jpg │ └── tree.jpg ├── internet_speed_test │ ├── README.md │ ├── Screenshot.png │ ├── main.py │ └── requirement.txt ├── ipl_score_notifier │ ├── README.md │ ├── ipl_score_notifier.py │ ├── ipl_score_notifier2.py │ └── test.png ├── leaked passwords │ ├── 1602413429093.png │ ├── README.md │ ├── psw.txt │ ├── pswpwner.py │ └── requirements.txt ├── mac changer │ ├── README.md │ ├── Screenshot_2020-10-14_02-49-31.png │ ├── macchanger.py │ └── main.py ├── passwordManager │ ├── README.md │ ├── info.txt │ └── main.py ├── pdf_encryptor │ ├── .gitignore │ ├── README.md │ ├── __init__.py │ ├── encrypt.py │ ├── images │ │ ├── cli.png │ │ └── encrypted_pdf.png │ └── requirements.txt ├── phone number extractor │ ├── README.md │ ├── Result.png │ └── phonenumber.py ├── pinging-websites │ ├── README.md │ ├── pinging.py │ ├── screenshot.PNG │ └── start_pinging.bat ├── speech-to-text │ ├── README.md │ ├── execution-output.png │ ├── requirements.txt │ ├── sample.wav │ └── speech-to-text.py ├── torrent_seacher │ ├── README.md │ ├── main.py │ └── requirements.txt ├── turtle_race_game │ ├── ReadMe.md │ ├── race_end.jpg │ ├── race_start.jpg │ └── turtle_race_game.py ├── video_player │ ├── README.md │ └── player.py ├── virus-using-turtle │ ├── README.md │ ├── requirements.txt │ ├── virus-sim-video.mp4 │ ├── virus-sim.png │ └── virus-using-turtle.py ├── website-cloner │ ├── README.md │ ├── img.png │ ├── main.py │ └── requirements.txt ├── wifi_hack │ ├── README.md │ ├── images │ │ ├── gui_output.PNG │ │ ├── script.PNG │ │ └── wifi.png │ ├── wifi_password_getter.py │ └── wifi_password_getter_gui.py └── wikipedia_searcher │ ├── README.md │ ├── Searcher_using_API │ ├── README.md │ ├── requirements.txt │ └── wiki.py │ ├── main.py │ └── requirements.txt ├── README.md ├── Web Hacks ├── Animations │ └── m4Dummies-Animations │ │ ├── 3D-Card │ │ ├── README.md │ │ ├── image.gif │ │ ├── index.html │ │ ├── script.js │ │ └── style.css │ │ └── text-anim │ │ ├── README.md │ │ ├── index.html │ │ ├── script.js │ │ ├── style.css │ │ └── text-anim.gif ├── Hoverboard │ ├── README.md │ ├── index.html │ └── screenshot.png ├── Preloader │ ├── README.md │ ├── capture.gif │ ├── index.html │ └── style.css ├── README.md ├── Weather App │ ├── README.md │ ├── bg.jpg │ ├── index.html │ ├── main.css │ ├── main.js │ └── weatherappscreenshot.png ├── card-slider │ ├── README.md │ ├── card_slider.png │ ├── card_text.png │ ├── index.html │ ├── screenshot_card.png │ └── style.css ├── clock design │ ├── README.md │ ├── index.html │ ├── screenshot.PNG │ └── style.css ├── collapsible-side-bar │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── logo192.png │ │ ├── logo512.png │ │ ├── manifest.json │ │ └── robots.txt │ ├── sidebar-collapsible.gif │ ├── src │ │ ├── App.css │ │ ├── App.js │ │ ├── App.test.js │ │ ├── components │ │ │ ├── SideBar.js │ │ │ ├── SidebarData.js │ │ │ └── SubMenus.js │ │ ├── index.css │ │ ├── index.js │ │ ├── pages │ │ │ ├── about.js │ │ │ ├── contact.js │ │ │ ├── extra.js │ │ │ ├── home.js │ │ │ └── projects.js │ │ ├── reportWebVitals.js │ │ └── setupTests.js │ └── yarn.lock ├── countdown-timer │ ├── README.md │ ├── app.js │ ├── header.png │ ├── index.html │ └── styles.css ├── face_change_mouse │ ├── README.md │ ├── index.html │ └── screenshot.png ├── pdf_from_html │ ├── README.md │ ├── index.html │ └── screenshot.png ├── signin_signup_page │ ├── README.md │ ├── index.html │ ├── screenshot.png │ ├── script.js │ └── style.css ├── simple counter │ ├── README.md │ ├── index.html │ ├── screenshot.png │ ├── script.js │ └── style.css └── timeline │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ └── index.html │ ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── InputForm.js │ ├── Timeline.js │ ├── index.js │ ├── logo.svg │ ├── serviceWorker.js │ └── setupTests.js │ └── timeline.png └── avatar.png /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.github/auto_assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/.github/auto_assign.yml -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/issues_labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/.github/issues_labeler.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/auto_assign_pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/.github/workflows/auto_assign_pr.yml -------------------------------------------------------------------------------- /.github/workflows/codesee-arch-diagram.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/.github/workflows/codesee-arch-diagram.yml -------------------------------------------------------------------------------- /.github/workflows/issues_labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/.github/workflows/issues_labeler.yml -------------------------------------------------------------------------------- /.github/workflows/merged-notification.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/.github/workflows/merged-notification.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/.gitignore -------------------------------------------------------------------------------- /Bash/Dynamic Wallpaper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Bash/Dynamic Wallpaper/README.md -------------------------------------------------------------------------------- /Bash/Dynamic Wallpaper/dynamic_wallpaper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Bash/Dynamic Wallpaper/dynamic_wallpaper.sh -------------------------------------------------------------------------------- /Bash/Dynamic Wallpaper/screens/SS1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Bash/Dynamic Wallpaper/screens/SS1.png -------------------------------------------------------------------------------- /Bash/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Bash/README.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /JavaScript/Drum Kit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/README.md -------------------------------------------------------------------------------- /JavaScript/Drum Kit/images/crash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/images/crash.png -------------------------------------------------------------------------------- /JavaScript/Drum Kit/images/kick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/images/kick.png -------------------------------------------------------------------------------- /JavaScript/Drum Kit/images/snare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/images/snare.png -------------------------------------------------------------------------------- /JavaScript/Drum Kit/images/tom1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/images/tom1.png -------------------------------------------------------------------------------- /JavaScript/Drum Kit/images/tom2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/images/tom2.png -------------------------------------------------------------------------------- /JavaScript/Drum Kit/images/tom3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/images/tom3.png -------------------------------------------------------------------------------- /JavaScript/Drum Kit/images/tom4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/images/tom4.png -------------------------------------------------------------------------------- /JavaScript/Drum Kit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/index.html -------------------------------------------------------------------------------- /JavaScript/Drum Kit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/index.js -------------------------------------------------------------------------------- /JavaScript/Drum Kit/sounds/crash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/sounds/crash.mp3 -------------------------------------------------------------------------------- /JavaScript/Drum Kit/sounds/kick-bass.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/sounds/kick-bass.mp3 -------------------------------------------------------------------------------- /JavaScript/Drum Kit/sounds/snare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/sounds/snare.mp3 -------------------------------------------------------------------------------- /JavaScript/Drum Kit/sounds/tom-1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/sounds/tom-1.mp3 -------------------------------------------------------------------------------- /JavaScript/Drum Kit/sounds/tom-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/sounds/tom-2.mp3 -------------------------------------------------------------------------------- /JavaScript/Drum Kit/sounds/tom-3.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/sounds/tom-3.mp3 -------------------------------------------------------------------------------- /JavaScript/Drum Kit/sounds/tom-4.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/sounds/tom-4.mp3 -------------------------------------------------------------------------------- /JavaScript/Drum Kit/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Drum Kit/styles.css -------------------------------------------------------------------------------- /JavaScript/Javascript Calculator/JSCalc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Javascript Calculator/JSCalc.css -------------------------------------------------------------------------------- /JavaScript/Javascript Calculator/JSCalc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Javascript Calculator/JSCalc.html -------------------------------------------------------------------------------- /JavaScript/Javascript Calculator/JSCalc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Javascript Calculator/JSCalc.js -------------------------------------------------------------------------------- /JavaScript/Javascript Calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Javascript Calculator/README.md -------------------------------------------------------------------------------- /JavaScript/Mini Paint/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Mini Paint/README.md -------------------------------------------------------------------------------- /JavaScript/Mini Paint/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Mini Paint/index.html -------------------------------------------------------------------------------- /JavaScript/Mini Paint/output.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Mini Paint/output.jpg -------------------------------------------------------------------------------- /JavaScript/Mini Paint/output2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Mini Paint/output2.jpg -------------------------------------------------------------------------------- /JavaScript/Mini Paint/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Mini Paint/script.js -------------------------------------------------------------------------------- /JavaScript/Mini Paint/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Mini Paint/styles.css -------------------------------------------------------------------------------- /JavaScript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/README.md -------------------------------------------------------------------------------- /JavaScript/Url_Shortner/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Url_Shortner/.gitignore -------------------------------------------------------------------------------- /JavaScript/Url_Shortner/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Url_Shortner/Readme.md -------------------------------------------------------------------------------- /JavaScript/Url_Shortner/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Url_Shortner/package-lock.json -------------------------------------------------------------------------------- /JavaScript/Url_Shortner/shortener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/Url_Shortner/shortener.js -------------------------------------------------------------------------------- /JavaScript/covid19-stats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/covid19-stats/README.md -------------------------------------------------------------------------------- /JavaScript/covid19-stats/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/covid19-stats/index.js -------------------------------------------------------------------------------- /JavaScript/covid19-stats/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/covid19-stats/package-lock.json -------------------------------------------------------------------------------- /JavaScript/covid19-stats/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/covid19-stats/package.json -------------------------------------------------------------------------------- /JavaScript/covid19-stats/src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/covid19-stats/src/app.js -------------------------------------------------------------------------------- /JavaScript/covid19-stats/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/covid19-stats/webpack.config.js -------------------------------------------------------------------------------- /JavaScript/lorem_ipsum_generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/lorem_ipsum_generator/README.md -------------------------------------------------------------------------------- /JavaScript/lorem_ipsum_generator/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/lorem_ipsum_generator/app.js -------------------------------------------------------------------------------- /JavaScript/lorem_ipsum_generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/lorem_ipsum_generator/index.html -------------------------------------------------------------------------------- /JavaScript/lorem_ipsum_generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/lorem_ipsum_generator/style.css -------------------------------------------------------------------------------- /JavaScript/rock-paper-scissor/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/rock-paper-scissor/.gitignore -------------------------------------------------------------------------------- /JavaScript/rock-paper-scissor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/rock-paper-scissor/README.md -------------------------------------------------------------------------------- /JavaScript/rock-paper-scissor/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/rock-paper-scissor/package-lock.json -------------------------------------------------------------------------------- /JavaScript/rock-paper-scissor/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/rock-paper-scissor/package.json -------------------------------------------------------------------------------- /JavaScript/rock-paper-scissor/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/rock-paper-scissor/public/favicon.ico -------------------------------------------------------------------------------- /JavaScript/rock-paper-scissor/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/rock-paper-scissor/public/index.html -------------------------------------------------------------------------------- /JavaScript/rock-paper-scissor/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/rock-paper-scissor/public/logo192.png -------------------------------------------------------------------------------- /JavaScript/rock-paper-scissor/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/rock-paper-scissor/public/logo512.png -------------------------------------------------------------------------------- /JavaScript/rock-paper-scissor/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/rock-paper-scissor/public/manifest.json -------------------------------------------------------------------------------- /JavaScript/rock-paper-scissor/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/rock-paper-scissor/public/robots.txt -------------------------------------------------------------------------------- /JavaScript/rock-paper-scissor/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/rock-paper-scissor/src/App.css -------------------------------------------------------------------------------- /JavaScript/rock-paper-scissor/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/rock-paper-scissor/src/App.js -------------------------------------------------------------------------------- /JavaScript/rock-paper-scissor/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/rock-paper-scissor/src/index.css -------------------------------------------------------------------------------- /JavaScript/rock-paper-scissor/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/JavaScript/rock-paper-scissor/src/index.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/LICENSE -------------------------------------------------------------------------------- /Python/2048_Stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/2048_Stack/README.md -------------------------------------------------------------------------------- /Python/2048_Stack/images/Logo_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/2048_Stack/images/Logo_2.jpg -------------------------------------------------------------------------------- /Python/2048_Stack/images/Startbt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/2048_Stack/images/Startbt.jpg -------------------------------------------------------------------------------- /Python/2048_Stack/images/eximt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/2048_Stack/images/eximt.jpg -------------------------------------------------------------------------------- /Python/2048_Stack/images/fullbg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/2048_Stack/images/fullbg.jpg -------------------------------------------------------------------------------- /Python/2048_Stack/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/2048_Stack/main.py -------------------------------------------------------------------------------- /Python/2048_Stack/requirements.txt: -------------------------------------------------------------------------------- 1 | jsonschema==3.2.0 2 | Pillow==9.3.0 3 | tk==0.1.0 -------------------------------------------------------------------------------- /Python/2048_Stack/score.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /Python/CSV_to_JSON/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/CSV_to_JSON/README.md -------------------------------------------------------------------------------- /Python/CSV_to_JSON/csv_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/CSV_to_JSON/csv_to_json.py -------------------------------------------------------------------------------- /Python/CSV_to_JSON/img/CLI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/CSV_to_JSON/img/CLI.jpg -------------------------------------------------------------------------------- /Python/CSV_to_JSON/img/after.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/CSV_to_JSON/img/after.jpg -------------------------------------------------------------------------------- /Python/CSV_to_JSON/img/before.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/CSV_to_JSON/img/before.jpg -------------------------------------------------------------------------------- /Python/Clock_Application/Clock_Application.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Clock_Application/Clock_Application.py -------------------------------------------------------------------------------- /Python/Clock_Application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Clock_Application/README.md -------------------------------------------------------------------------------- /Python/Clock_Application/clock_win.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Clock_Application/clock_win.ui -------------------------------------------------------------------------------- /Python/Clock_Application/screenshots/clockapp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Clock_Application/screenshots/clockapp1.png -------------------------------------------------------------------------------- /Python/Clock_Application/screenshots/clockapp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Clock_Application/screenshots/clockapp2.png -------------------------------------------------------------------------------- /Python/Clock_Application/screenshots/clockapp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Clock_Application/screenshots/clockapp3.png -------------------------------------------------------------------------------- /Python/Convert_jpg_to_png/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Convert_jpg_to_png/README.md -------------------------------------------------------------------------------- /Python/Convert_jpg_to_png/main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Convert_jpg_to_png/main.ipynb -------------------------------------------------------------------------------- /Python/Currencyconverter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Currencyconverter/README.md -------------------------------------------------------------------------------- /Python/Currencyconverter/currencyconverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Currencyconverter/currencyconverter.py -------------------------------------------------------------------------------- /Python/Currencyconverter/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Currencyconverter/output.png -------------------------------------------------------------------------------- /Python/Desktop Background changer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Desktop Background changer/README.md -------------------------------------------------------------------------------- /Python/Desktop Background changer/changer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Desktop Background changer/changer.py -------------------------------------------------------------------------------- /Python/Desktop Background changer/requirements.txt: -------------------------------------------------------------------------------- 1 | appscript==1.1.1 2 | -------------------------------------------------------------------------------- /Python/Desktop Background changer/screenshot.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Desktop Background changer/screenshot.jpeg -------------------------------------------------------------------------------- /Python/Download_Audio_From_Video/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Download_Audio_From_Video/config.py -------------------------------------------------------------------------------- /Python/Download_Audio_From_Video/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Download_Audio_From_Video/images/1.png -------------------------------------------------------------------------------- /Python/Download_Audio_From_Video/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Download_Audio_From_Video/images/2.png -------------------------------------------------------------------------------- /Python/Download_Audio_From_Video/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Download_Audio_From_Video/readme.md -------------------------------------------------------------------------------- /Python/Download_Audio_From_Video/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Download_Audio_From_Video/requirements.txt -------------------------------------------------------------------------------- /Python/Download_Audio_From_Video/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Download_Audio_From_Video/script.py -------------------------------------------------------------------------------- /Python/Encode_Decode_Tool/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Encode_Decode_Tool/README.md -------------------------------------------------------------------------------- /Python/Encode_Decode_Tool/Screenshots/Screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Encode_Decode_Tool/Screenshots/Screenshot_1.png -------------------------------------------------------------------------------- /Python/Encode_Decode_Tool/Screenshots/Screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Encode_Decode_Tool/Screenshots/Screenshot_2.png -------------------------------------------------------------------------------- /Python/Encode_Decode_Tool/Screenshots/Screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Encode_Decode_Tool/Screenshots/Screenshot_3.png -------------------------------------------------------------------------------- /Python/Encode_Decode_Tool/Screenshots/Screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Encode_Decode_Tool/Screenshots/Screenshot_4.png -------------------------------------------------------------------------------- /Python/Encode_Decode_Tool/Screenshots/Screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Encode_Decode_Tool/Screenshots/Screenshot_5.png -------------------------------------------------------------------------------- /Python/Encode_Decode_Tool/enc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Encode_Decode_Tool/enc.py -------------------------------------------------------------------------------- /Python/Encode_Decode_Tool/requirements.txt: -------------------------------------------------------------------------------- 1 | morse3==2.9 -------------------------------------------------------------------------------- /Python/Find Duplicate Files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Find Duplicate Files/README.md -------------------------------------------------------------------------------- /Python/Find Duplicate Files/dups.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Find Duplicate Files/dups.jpeg -------------------------------------------------------------------------------- /Python/Find Duplicate Files/finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Find Duplicate Files/finder.py -------------------------------------------------------------------------------- /Python/Find Duplicate Files/test_files/another_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Find Duplicate Files/test_files/another_file.txt -------------------------------------------------------------------------------- /Python/Find Duplicate Files/test_files/file_a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Find Duplicate Files/test_files/file_a.txt -------------------------------------------------------------------------------- /Python/Find Duplicate Files/test_files/unique.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Find Duplicate Files/test_files/unique.txt -------------------------------------------------------------------------------- /Python/Folder Sorter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Folder Sorter/README.md -------------------------------------------------------------------------------- /Python/Folder Sorter/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Folder Sorter/main.py -------------------------------------------------------------------------------- /Python/Folder Sorter/screens/SS1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Folder Sorter/screens/SS1.png -------------------------------------------------------------------------------- /Python/GithubScraper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/GithubScraper/README.md -------------------------------------------------------------------------------- /Python/GithubScraper/assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/GithubScraper/assets/1.png -------------------------------------------------------------------------------- /Python/GithubScraper/assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/GithubScraper/assets/2.png -------------------------------------------------------------------------------- /Python/GithubScraper/assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/GithubScraper/assets/3.png -------------------------------------------------------------------------------- /Python/GithubScraper/assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/GithubScraper/assets/4.png -------------------------------------------------------------------------------- /Python/GithubScraper/assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/GithubScraper/assets/5.png -------------------------------------------------------------------------------- /Python/GithubScraper/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.31.0 2 | beautifulsoup4==4.10.0 -------------------------------------------------------------------------------- /Python/GithubScraper/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/GithubScraper/scraper.py -------------------------------------------------------------------------------- /Python/Github_User_Details/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Github_User_Details/README.md -------------------------------------------------------------------------------- /Python/Github_User_Details/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Github_User_Details/functions.py -------------------------------------------------------------------------------- /Python/Github_User_Details/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Github_User_Details/github.png -------------------------------------------------------------------------------- /Python/Github_User_Details/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Github_User_Details/gui.py -------------------------------------------------------------------------------- /Python/Github_User_Details/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Github_User_Details/main.py -------------------------------------------------------------------------------- /Python/Github_User_Details/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.24.0 2 | Pillow==9.3.0 3 | -------------------------------------------------------------------------------- /Python/Github_User_Details/screenshot_cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Github_User_Details/screenshot_cli.png -------------------------------------------------------------------------------- /Python/Github_User_Details/screenshot_gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Github_User_Details/screenshot_gui.png -------------------------------------------------------------------------------- /Python/Github_User_Details/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Github_User_Details/search.png -------------------------------------------------------------------------------- /Python/HTML_TO_MARKUP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/HTML_TO_MARKUP/README.md -------------------------------------------------------------------------------- /Python/HTML_TO_MARKUP/html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/HTML_TO_MARKUP/html.png -------------------------------------------------------------------------------- /Python/HTML_TO_MARKUP/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/HTML_TO_MARKUP/main.py -------------------------------------------------------------------------------- /Python/HTML_TO_MARKUP/md.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/HTML_TO_MARKUP/md.png -------------------------------------------------------------------------------- /Python/HTML_TO_MARKUP/requirements.txt: -------------------------------------------------------------------------------- 1 | markdownify==0.9.4 -------------------------------------------------------------------------------- /Python/Hyperlink_Extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Hyperlink_Extractor/README.md -------------------------------------------------------------------------------- /Python/Hyperlink_Extractor/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Hyperlink_Extractor/code.js -------------------------------------------------------------------------------- /Python/Hyperlink_Extractor/images/cmd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Hyperlink_Extractor/images/cmd.png -------------------------------------------------------------------------------- /Python/Hyperlink_Extractor/images/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Hyperlink_Extractor/images/gui.png -------------------------------------------------------------------------------- /Python/Hyperlink_Extractor/links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Hyperlink_Extractor/links.py -------------------------------------------------------------------------------- /Python/Hyperlink_Extractor/links_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Hyperlink_Extractor/links_test.py -------------------------------------------------------------------------------- /Python/Hyperlink_Extractor/text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Hyperlink_Extractor/text.txt -------------------------------------------------------------------------------- /Python/Hyperlink_Extractor/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Hyperlink_Extractor/ui.py -------------------------------------------------------------------------------- /Python/Image to ASCII converter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Image to ASCII converter/README.md -------------------------------------------------------------------------------- /Python/Image to ASCII converter/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Image to ASCII converter/converter.py -------------------------------------------------------------------------------- /Python/Image_To_Sketch/MM2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Image_To_Sketch/MM2.png -------------------------------------------------------------------------------- /Python/Image_To_Sketch/MM6.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Image_To_Sketch/MM6.jpeg -------------------------------------------------------------------------------- /Python/Image_To_Sketch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Image_To_Sketch/README.md -------------------------------------------------------------------------------- /Python/Image_To_Sketch/combined.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Image_To_Sketch/combined.png -------------------------------------------------------------------------------- /Python/Image_To_Sketch/image_2_sketch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Image_To_Sketch/image_2_sketch.py -------------------------------------------------------------------------------- /Python/Image_To_Sketch/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Image_To_Sketch/output.png -------------------------------------------------------------------------------- /Python/Imgur_Album_Downloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Imgur_Album_Downloader/README.md -------------------------------------------------------------------------------- /Python/Imgur_Album_Downloader/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Imgur_Album_Downloader/main.py -------------------------------------------------------------------------------- /Python/Imgur_Album_Downloader/requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==3.141.0 2 | Pillow==9.3.0 3 | -------------------------------------------------------------------------------- /Python/Imgur_Album_Downloader/screens/SS1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Imgur_Album_Downloader/screens/SS1.png -------------------------------------------------------------------------------- /Python/Insta Non Followers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Insta Non Followers/README.md -------------------------------------------------------------------------------- /Python/Insta Non Followers/ScreenShots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Insta Non Followers/ScreenShots/screenshot1.png -------------------------------------------------------------------------------- /Python/Insta Non Followers/ScreenShots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Insta Non Followers/ScreenShots/screenshot2.png -------------------------------------------------------------------------------- /Python/Insta Non Followers/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Insta Non Followers/main.py -------------------------------------------------------------------------------- /Python/Insta Non Followers/requirements.txt: -------------------------------------------------------------------------------- 1 | instagram-private-api==1.6.0 2 | -------------------------------------------------------------------------------- /Python/Insta Post By Location/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Insta Post By Location/README.md -------------------------------------------------------------------------------- /Python/Insta Post By Location/ScreenShots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Insta Post By Location/ScreenShots/screenshot1.png -------------------------------------------------------------------------------- /Python/Insta Post By Location/ScreenShots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Insta Post By Location/ScreenShots/screenshot2.png -------------------------------------------------------------------------------- /Python/Insta Post By Location/help2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Insta Post By Location/help2.jpeg -------------------------------------------------------------------------------- /Python/Insta Post By Location/help3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Insta Post By Location/help3.jpeg -------------------------------------------------------------------------------- /Python/Insta Post By Location/help4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Insta Post By Location/help4.jpeg -------------------------------------------------------------------------------- /Python/Insta Post By Location/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Insta Post By Location/main.py -------------------------------------------------------------------------------- /Python/Insta Post By Location/media/images/image_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Insta Post By Location/media/images/image_example.jpg -------------------------------------------------------------------------------- /Python/Insta Post By Location/media/videos/video_example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Insta Post By Location/media/videos/video_example.mp4 -------------------------------------------------------------------------------- /Python/Insta Post By Location/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Insta Post By Location/requirements.txt -------------------------------------------------------------------------------- /Python/InstaScraper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/InstaScraper/README.md -------------------------------------------------------------------------------- /Python/InstaScraper/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/InstaScraper/chromedriver.exe -------------------------------------------------------------------------------- /Python/InstaScraper/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/InstaScraper/images/1.png -------------------------------------------------------------------------------- /Python/InstaScraper/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/InstaScraper/images/2.png -------------------------------------------------------------------------------- /Python/InstaScraper/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/InstaScraper/images/3.png -------------------------------------------------------------------------------- /Python/InstaScraper/images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/InstaScraper/images/4.png -------------------------------------------------------------------------------- /Python/InstaScraper/images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/InstaScraper/images/5.png -------------------------------------------------------------------------------- /Python/InstaScraper/images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/InstaScraper/images/6.png -------------------------------------------------------------------------------- /Python/InstaScraper/images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/InstaScraper/images/7.png -------------------------------------------------------------------------------- /Python/InstaScraper/profiles/cristiano/cristiano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/InstaScraper/profiles/cristiano/cristiano.png -------------------------------------------------------------------------------- /Python/InstaScraper/profiles/cristiano/cristiano.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/InstaScraper/profiles/cristiano/cristiano.txt -------------------------------------------------------------------------------- /Python/InstaScraper/profiles/instagram/instagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/InstaScraper/profiles/instagram/instagram.png -------------------------------------------------------------------------------- /Python/InstaScraper/profiles/instagram/instagram.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/InstaScraper/profiles/instagram/instagram.txt -------------------------------------------------------------------------------- /Python/InstaScraper/requirements.txt: -------------------------------------------------------------------------------- 1 | selenium==3.141.0 2 | requests==2.26.0 -------------------------------------------------------------------------------- /Python/InstaScraper/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/InstaScraper/scraper.py -------------------------------------------------------------------------------- /Python/InstaScraper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/InstaScraper/utils.py -------------------------------------------------------------------------------- /Python/Invisible Cloak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Invisible Cloak/README.md -------------------------------------------------------------------------------- /Python/Invisible Cloak/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Invisible Cloak/Screenshot.png -------------------------------------------------------------------------------- /Python/Invisible Cloak/invisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Invisible Cloak/invisible.py -------------------------------------------------------------------------------- /Python/Invisible Cloak/requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | opencv-python -------------------------------------------------------------------------------- /Python/Mail_Sender_GUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Mail_Sender_GUI/README.md -------------------------------------------------------------------------------- /Python/Mail_Sender_GUI/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Mail_Sender_GUI/logo.png -------------------------------------------------------------------------------- /Python/Mail_Sender_GUI/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Mail_Sender_GUI/main.py -------------------------------------------------------------------------------- /Python/Mail_Sender_GUI/requirements.txt: -------------------------------------------------------------------------------- 1 | PySide2 -------------------------------------------------------------------------------- /Python/Mass_Mail_Sender/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Mass_Mail_Sender/README.md -------------------------------------------------------------------------------- /Python/Mass_Mail_Sender/mail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Mass_Mail_Sender/mail.py -------------------------------------------------------------------------------- /Python/Medium_Articles_to_Text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Medium_Articles_to_Text/README.md -------------------------------------------------------------------------------- /Python/Medium_Articles_to_Text/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.9.1 2 | requests==2.23.0 3 | -------------------------------------------------------------------------------- /Python/Medium_Articles_to_Text/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Medium_Articles_to_Text/script.py -------------------------------------------------------------------------------- /Python/Medium_Articles_to_Text/script_execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Medium_Articles_to_Text/script_execution.png -------------------------------------------------------------------------------- /Python/Movie_Recommendation_System/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Movie_Recommendation_System/README.md -------------------------------------------------------------------------------- /Python/Movie_Recommendation_System/genres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Movie_Recommendation_System/genres.py -------------------------------------------------------------------------------- /Python/Movie_Recommendation_System/movie_recommendation_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Movie_Recommendation_System/movie_recommendation_system.py -------------------------------------------------------------------------------- /Python/Movie_Recommendation_System/movies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Movie_Recommendation_System/movies.py -------------------------------------------------------------------------------- /Python/Movie_Recommendation_System/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Movie_Recommendation_System/requirements.txt -------------------------------------------------------------------------------- /Python/Movie_Recommendation_System/usage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Movie_Recommendation_System/usage.gif -------------------------------------------------------------------------------- /Python/Movie_Sub_Downloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Movie_Sub_Downloader/README.md -------------------------------------------------------------------------------- /Python/Movie_Sub_Downloader/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Movie_Sub_Downloader/main.py -------------------------------------------------------------------------------- /Python/Movie_Sub_Downloader/requirements.txt: -------------------------------------------------------------------------------- 1 | 2 | requests==2.25.1 3 | beautifulsoup4==4.9.3 -------------------------------------------------------------------------------- /Python/Movie_Sub_Downloader/screens/SS1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Movie_Sub_Downloader/screens/SS1.png -------------------------------------------------------------------------------- /Python/OTP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/OTP/README.md -------------------------------------------------------------------------------- /Python/OTP/otp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/OTP/otp.py -------------------------------------------------------------------------------- /Python/OTP/otp_2_clipboard.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/OTP/otp_2_clipboard.jpeg -------------------------------------------------------------------------------- /Python/OTP/requirements.txt: -------------------------------------------------------------------------------- 1 | pyotp==1.26.0 2 | -------------------------------------------------------------------------------- /Python/PDF_watermaker/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/PDF_watermaker/Pipfile -------------------------------------------------------------------------------- /Python/PDF_watermaker/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/PDF_watermaker/Pipfile.lock -------------------------------------------------------------------------------- /Python/PDF_watermaker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/PDF_watermaker/README.md -------------------------------------------------------------------------------- /Python/PDF_watermaker/lorem-ipsum.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/PDF_watermaker/lorem-ipsum.pdf -------------------------------------------------------------------------------- /Python/PDF_watermaker/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/PDF_watermaker/main.py -------------------------------------------------------------------------------- /Python/PDF_watermaker/pdf_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/PDF_watermaker/pdf_in.png -------------------------------------------------------------------------------- /Python/PDF_watermaker/pdf_out.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/PDF_watermaker/pdf_out.png -------------------------------------------------------------------------------- /Python/PDF_watermaker/requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/PDF_watermaker/requirement.txt -------------------------------------------------------------------------------- /Python/PDF_watermaker/watermark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/PDF_watermaker/watermark.png -------------------------------------------------------------------------------- /Python/Paint Application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Paint Application/README.md -------------------------------------------------------------------------------- /Python/Paint Application/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Paint Application/main.py -------------------------------------------------------------------------------- /Python/Paint Application/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Paint Application/screenshot.png -------------------------------------------------------------------------------- /Python/Password_Strength_Checker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Password_Strength_Checker/README.md -------------------------------------------------------------------------------- /Python/Password_Strength_Checker/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Password_Strength_Checker/output.png -------------------------------------------------------------------------------- /Python/Password_Strength_Checker/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Password_Strength_Checker/script.py -------------------------------------------------------------------------------- /Python/Pdf_Reader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Pdf_Reader/README.md -------------------------------------------------------------------------------- /Python/Pdf_Reader/reader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Pdf_Reader/reader.png -------------------------------------------------------------------------------- /Python/Pdf_Reader/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Pdf_Reader/reader.py -------------------------------------------------------------------------------- /Python/Pdf_Reader/reader_GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Pdf_Reader/reader_GUI.py -------------------------------------------------------------------------------- /Python/Pdf_Reader/requirements.txt: -------------------------------------------------------------------------------- 1 | PyPDF2==1.26.0 2 | pyttsx3==2.7 3 | pywin32 -------------------------------------------------------------------------------- /Python/Ping_Pong_Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Ping_Pong_Game/README.md -------------------------------------------------------------------------------- /Python/Ping_Pong_Game/bounce.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Ping_Pong_Game/bounce.wav -------------------------------------------------------------------------------- /Python/Ping_Pong_Game/pingpong.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Ping_Pong_Game/pingpong.mp4 -------------------------------------------------------------------------------- /Python/Ping_Pong_Game/pingpong.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Ping_Pong_Game/pingpong.py -------------------------------------------------------------------------------- /Python/Ping_Pong_Game/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Ping_Pong_Game/requirements.txt -------------------------------------------------------------------------------- /Python/Port_Scanner_with_Multithreading/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Port_Scanner_with_Multithreading/README.md -------------------------------------------------------------------------------- /Python/Port_Scanner_with_Multithreading/ip_ad.cfg: -------------------------------------------------------------------------------- 1 | [creds] 2 | token = HOST-IP 3 | -------------------------------------------------------------------------------- /Python/Port_Scanner_with_Multithreading/port_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Port_Scanner_with_Multithreading/port_scanner.py -------------------------------------------------------------------------------- /Python/Port_Scanner_with_Multithreading/script_execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Port_Scanner_with_Multithreading/script_execution.png -------------------------------------------------------------------------------- /Python/QRCODE_Generator_and_Reader/Screenshot 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/QRCODE_Generator_and_Reader/Screenshot 1.png -------------------------------------------------------------------------------- /Python/QRCODE_Generator_and_Reader/Screenshot 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/QRCODE_Generator_and_Reader/Screenshot 2.png -------------------------------------------------------------------------------- /Python/QRCODE_Generator_and_Reader/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/QRCODE_Generator_and_Reader/main.py -------------------------------------------------------------------------------- /Python/QRCODE_Generator_and_Reader/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/QRCODE_Generator_and_Reader/readme.md -------------------------------------------------------------------------------- /Python/Quiz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Quiz/README.md -------------------------------------------------------------------------------- /Python/Quiz/images/quiz_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Quiz/images/quiz_app.png -------------------------------------------------------------------------------- /Python/Quiz/images/sample_ace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Quiz/images/sample_ace.png -------------------------------------------------------------------------------- /Python/Quiz/images/sample_question_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Quiz/images/sample_question_file.png -------------------------------------------------------------------------------- /Python/Quiz/images/sample_score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Quiz/images/sample_score.png -------------------------------------------------------------------------------- /Python/Quiz/images/sample_wrong.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Quiz/images/sample_wrong.png -------------------------------------------------------------------------------- /Python/Quiz/quiz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Quiz/quiz.py -------------------------------------------------------------------------------- /Python/Quiz/quiz_questions.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Quiz/quiz_questions.csv -------------------------------------------------------------------------------- /Python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/README.md -------------------------------------------------------------------------------- /Python/Reddit_Scraper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Reddit_Scraper/README.md -------------------------------------------------------------------------------- /Python/Reddit_Scraper/oneliners.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Reddit_Scraper/oneliners.json -------------------------------------------------------------------------------- /Python/Reddit_Scraper/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Reddit_Scraper/requirements.txt -------------------------------------------------------------------------------- /Python/Reddit_Scraper/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Reddit_Scraper/scraper.py -------------------------------------------------------------------------------- /Python/Related Hashtags/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Related Hashtags/README.md -------------------------------------------------------------------------------- /Python/Related Hashtags/ScreenShots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Related Hashtags/ScreenShots/screenshot1.png -------------------------------------------------------------------------------- /Python/Related Hashtags/ScreenShots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Related Hashtags/ScreenShots/screenshot2.png -------------------------------------------------------------------------------- /Python/Related Hashtags/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Related Hashtags/main.py -------------------------------------------------------------------------------- /Python/Related Hashtags/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Related Hashtags/requirements.txt -------------------------------------------------------------------------------- /Python/Scrap Insta Post via Hashtag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap Insta Post via Hashtag/README.md -------------------------------------------------------------------------------- /Python/Scrap Insta Post via Hashtag/ScreenShots/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap Insta Post via Hashtag/ScreenShots/screenshot1.png -------------------------------------------------------------------------------- /Python/Scrap Insta Post via Hashtag/ScreenShots/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap Insta Post via Hashtag/ScreenShots/screenshot2.png -------------------------------------------------------------------------------- /Python/Scrap Insta Post via Hashtag/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap Insta Post via Hashtag/main.py -------------------------------------------------------------------------------- /Python/Scrap Insta Post via Hashtag/media/images/image_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap Insta Post via Hashtag/media/images/image_example.jpg -------------------------------------------------------------------------------- /Python/Scrap Insta Post via Hashtag/media/videos/video_example.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap Insta Post via Hashtag/media/videos/video_example.mp4 -------------------------------------------------------------------------------- /Python/Scrap Insta Post via Hashtag/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap Insta Post via Hashtag/requirements.txt -------------------------------------------------------------------------------- /Python/Scrap Links/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap Links/README.md -------------------------------------------------------------------------------- /Python/Scrap Links/page_links/Google_Summer_of_Code_Archive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap Links/page_links/Google_Summer_of_Code_Archive.txt -------------------------------------------------------------------------------- /Python/Scrap Links/page_links/Hacktoberfest_presented_by_DigitalOcean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap Links/page_links/Hacktoberfest_presented_by_DigitalOcean.txt -------------------------------------------------------------------------------- /Python/Scrap Links/page_links/PyTorch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap Links/page_links/PyTorch.txt -------------------------------------------------------------------------------- /Python/Scrap Links/requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4==4.9.1 2 | requests==2.23.0 -------------------------------------------------------------------------------- /Python/Scrap Links/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap Links/script.py -------------------------------------------------------------------------------- /Python/Scrap Links/script_execution.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap Links/script_execution.jpg -------------------------------------------------------------------------------- /Python/Scrap_Email/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap_Email/README.md -------------------------------------------------------------------------------- /Python/Scrap_Email/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap_Email/output.png -------------------------------------------------------------------------------- /Python/Scrap_Email/requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.24.0 -------------------------------------------------------------------------------- /Python/Scrap_Email/scrap_email.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Scrap_Email/scrap_email.py -------------------------------------------------------------------------------- /Python/Screen Recorder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Screen Recorder/README.md -------------------------------------------------------------------------------- /Python/Screen Recorder/Recording.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Screen Recorder/Recording.avi -------------------------------------------------------------------------------- /Python/Screen Recorder/capture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Screen Recorder/capture.svg -------------------------------------------------------------------------------- /Python/Screen Recorder/captureIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Screen Recorder/captureIT.py -------------------------------------------------------------------------------- /Python/Screen Recorder/captureIT_img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Screen Recorder/captureIT_img.jpg -------------------------------------------------------------------------------- /Python/Screen Recorder/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Screen Recorder/pause.svg -------------------------------------------------------------------------------- /Python/Screen Recorder/record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Screen Recorder/record.png -------------------------------------------------------------------------------- /Python/Screen Recorder/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Screen Recorder/screenshot.jpg -------------------------------------------------------------------------------- /Python/Screen Recorder/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Screen Recorder/stop.svg -------------------------------------------------------------------------------- /Python/ScreenShot Taker/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/ScreenShot Taker/image1.png -------------------------------------------------------------------------------- /Python/ScreenShot Taker/output.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/ScreenShot Taker/output.py -------------------------------------------------------------------------------- /Python/ScreenShot Taker/save.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/ScreenShot Taker/save.ui -------------------------------------------------------------------------------- /Python/ScreenShot Taker/screenshot_taker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/ScreenShot Taker/screenshot_taker.py -------------------------------------------------------------------------------- /Python/ScreenShot Taker/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/ScreenShot Taker/test.py -------------------------------------------------------------------------------- /Python/Send SMS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Send SMS/README.md -------------------------------------------------------------------------------- /Python/Send SMS/requirements.txt: -------------------------------------------------------------------------------- 1 | twilio==6.45.4 2 | phonenumbers==8.12.10 3 | -------------------------------------------------------------------------------- /Python/Send SMS/send_sms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Send SMS/send_sms.py -------------------------------------------------------------------------------- /Python/Send SMS/successful.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Send SMS/successful.jpeg -------------------------------------------------------------------------------- /Python/Snake Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Snake Game/README.md -------------------------------------------------------------------------------- /Python/Snake Game/assets/images/icon/Pynake_Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Snake Game/assets/images/icon/Pynake_Icon.png -------------------------------------------------------------------------------- /Python/Snake Game/assets/images/icon/snake.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Snake Game/assets/images/icon/snake.ico -------------------------------------------------------------------------------- /Python/Snake Game/assets/images/icon/snake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Snake Game/assets/images/icon/snake.jpg -------------------------------------------------------------------------------- /Python/Snake Game/assets/sounds/game_music_2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Snake Game/assets/sounds/game_music_2.wav -------------------------------------------------------------------------------- /Python/Snake Game/assets/sounds/sound_effects/Snake_Bite.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Snake Game/assets/sounds/sound_effects/Snake_Bite.wav -------------------------------------------------------------------------------- /Python/Snake Game/assets/sounds/sound_effects/game_going.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Snake Game/assets/sounds/sound_effects/game_going.wav -------------------------------------------------------------------------------- /Python/Snake Game/assets/sounds/sound_effects/game_over.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Snake Game/assets/sounds/sound_effects/game_over.wav -------------------------------------------------------------------------------- /Python/Snake Game/assets/sounds/sound_effects/got_apple.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Snake Game/assets/sounds/sound_effects/got_apple.wav -------------------------------------------------------------------------------- /Python/Snake Game/snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Snake Game/snake.py -------------------------------------------------------------------------------- /Python/Text_Summarize/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Text_Summarize/README.md -------------------------------------------------------------------------------- /Python/Text_Summarize/backend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Text_Summarize/backend.py -------------------------------------------------------------------------------- /Python/Text_Summarize/frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Text_Summarize/frontend.py -------------------------------------------------------------------------------- /Python/Text_Summarize/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Text_Summarize/main.py -------------------------------------------------------------------------------- /Python/Text_Summarize/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Text_Summarize/requirements.txt -------------------------------------------------------------------------------- /Python/Text_Summarize/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Text_Summarize/screenshot.png -------------------------------------------------------------------------------- /Python/Text_from_image/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Text_from_image/Screenshot.png -------------------------------------------------------------------------------- /Python/Text_from_image/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Text_from_image/main.py -------------------------------------------------------------------------------- /Python/Text_from_image/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Text_from_image/readme.md -------------------------------------------------------------------------------- /Python/Typing_Speed_Test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Typing_Speed_Test/README.md -------------------------------------------------------------------------------- /Python/Typing_Speed_Test/typing_speed_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Typing_Speed_Test/typing_speed_test.py -------------------------------------------------------------------------------- /Python/URL_Shortner/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/URL_Shortner/Readme.md -------------------------------------------------------------------------------- /Python/URL_Shortner/shortener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/URL_Shortner/shortener.py -------------------------------------------------------------------------------- /Python/Website_Blocker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Website_Blocker/README.md -------------------------------------------------------------------------------- /Python/Website_Blocker/blocker.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Website_Blocker/blocker.pyw -------------------------------------------------------------------------------- /Python/Youtube_Video_Audio_Downloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Youtube_Video_Audio_Downloader/README.md -------------------------------------------------------------------------------- /Python/Youtube_Video_Audio_Downloader/streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Youtube_Video_Audio_Downloader/streams.py -------------------------------------------------------------------------------- /Python/Youtube_Video_Downloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Youtube_Video_Downloader/README.md -------------------------------------------------------------------------------- /Python/Youtube_Video_Downloader/YT_Vid_Download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Youtube_Video_Downloader/YT_Vid_Download.py -------------------------------------------------------------------------------- /Python/Youtube_Video_Downloader/bg-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Youtube_Video_Downloader/bg-img.jpg -------------------------------------------------------------------------------- /Python/Youtube_Video_Downloader/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Youtube_Video_Downloader/requirements.txt -------------------------------------------------------------------------------- /Python/Zip Folder Application/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Zip Folder Application/README.md -------------------------------------------------------------------------------- /Python/Zip Folder Application/ZipFileGUI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Zip Folder Application/ZipFileGUI.png -------------------------------------------------------------------------------- /Python/Zip Folder Application/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/Zip Folder Application/zip.py -------------------------------------------------------------------------------- /Python/angry-birds-python/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/LICENSE -------------------------------------------------------------------------------- /Python/angry-birds-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/README.md -------------------------------------------------------------------------------- /Python/angry-birds-python/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/_config.yml -------------------------------------------------------------------------------- /Python/angry-birds-python/requirements.txt: -------------------------------------------------------------------------------- 1 | pygame==2.0.1 2 | pymunk==6.0.0 3 | -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/Buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/Buttons.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/angry-birds-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/angry-birds-image.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/angry_birds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/angry_birds.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/angry_birds_chrome_pigs_by_chinzapep-d5bnxdz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/angry_birds_chrome_pigs_by_chinzapep-d5bnxdz.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/angry_birds_toons_sprites_by_jared33-d64u29w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/angry_birds_toons_sprites_by_jared33-d64u29w.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/background.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/background1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/background1.jpg -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/background2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/background2.jpg -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/background3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/background3.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/background4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/background4.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/buttons-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/buttons-image.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/column.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/full-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/full-sprite.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/gravity-zero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/gravity-zero.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/latest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/latest.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/pig_failed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/pig_failed.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/red-bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/red-bird.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/red-bird2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/red-bird2.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/red-bird3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/red-bird3.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/selected-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/selected-buttons.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/sling-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/sling-2.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/sling-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/sling-3.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/sling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/sling.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/stars-edited.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/stars-edited.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/stars.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/walls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/walls.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/wood.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/images/wood2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/images/wood2.png -------------------------------------------------------------------------------- /Python/angry-birds-python/resources/sounds/angry-birds.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/resources/sounds/angry-birds.ogg -------------------------------------------------------------------------------- /Python/angry-birds-python/src/__pycache__/characters.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/src/__pycache__/characters.cpython-37.pyc -------------------------------------------------------------------------------- /Python/angry-birds-python/src/__pycache__/level.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/src/__pycache__/level.cpython-37.pyc -------------------------------------------------------------------------------- /Python/angry-birds-python/src/__pycache__/polygon.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/src/__pycache__/polygon.cpython-37.pyc -------------------------------------------------------------------------------- /Python/angry-birds-python/src/characters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/src/characters.py -------------------------------------------------------------------------------- /Python/angry-birds-python/src/level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/src/level.py -------------------------------------------------------------------------------- /Python/angry-birds-python/src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/src/main.py -------------------------------------------------------------------------------- /Python/angry-birds-python/src/polygon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/angry-birds-python/src/polygon.py -------------------------------------------------------------------------------- /Python/coronavirus-stats/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/coronavirus-stats/README.md -------------------------------------------------------------------------------- /Python/coronavirus-stats/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/coronavirus-stats/main.py -------------------------------------------------------------------------------- /Python/covid_19/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/covid_19/README.md -------------------------------------------------------------------------------- /Python/covid_19/c-19 map.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/covid_19/c-19 map.gif -------------------------------------------------------------------------------- /Python/covid_19/dataset_(by ~ john hopkins UNIV.)/time_series_covid19_confirmed_global.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/covid_19/dataset_(by ~ john hopkins UNIV.)/time_series_covid19_confirmed_global.csv -------------------------------------------------------------------------------- /Python/covid_19/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/covid_19/map.py -------------------------------------------------------------------------------- /Python/covid_19/maps/World_Map.cpg: -------------------------------------------------------------------------------- 1 | UTF-8 -------------------------------------------------------------------------------- /Python/covid_19/maps/World_Map.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/covid_19/maps/World_Map.dbf -------------------------------------------------------------------------------- /Python/covid_19/maps/World_Map.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/covid_19/maps/World_Map.prj -------------------------------------------------------------------------------- /Python/covid_19/maps/World_Map.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/covid_19/maps/World_Map.sbn -------------------------------------------------------------------------------- /Python/covid_19/maps/World_Map.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/covid_19/maps/World_Map.sbx -------------------------------------------------------------------------------- /Python/covid_19/maps/World_Map.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/covid_19/maps/World_Map.shp -------------------------------------------------------------------------------- /Python/covid_19/maps/World_Map.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/covid_19/maps/World_Map.shx -------------------------------------------------------------------------------- /Python/covid_19/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/covid_19/requirements.txt -------------------------------------------------------------------------------- /Python/csv-to-xlsx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/csv-to-xlsx/README.md -------------------------------------------------------------------------------- /Python/csv-to-xlsx/csv-to-xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/csv-to-xlsx/csv-to-xlsx.py -------------------------------------------------------------------------------- /Python/csv-to-xlsx/execution-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/csv-to-xlsx/execution-output.png -------------------------------------------------------------------------------- /Python/csv-to-xlsx/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/csv-to-xlsx/requirements.txt -------------------------------------------------------------------------------- /Python/delete_empty_folders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/delete_empty_folders/README.md -------------------------------------------------------------------------------- /Python/delete_empty_folders/gen_folder.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/delete_empty_folders/gen_folder.sh -------------------------------------------------------------------------------- /Python/delete_empty_folders/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/delete_empty_folders/script.py -------------------------------------------------------------------------------- /Python/delete_empty_folders/script_execution1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/delete_empty_folders/script_execution1.png -------------------------------------------------------------------------------- /Python/delete_empty_folders/script_execution2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/delete_empty_folders/script_execution2.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Bird/Bird1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Bird/Bird1.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Bird/Bird2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Bird/Bird2.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Cactus/LargeCactus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Cactus/LargeCactus1.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Cactus/LargeCactus2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Cactus/LargeCactus2.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Cactus/LargeCactus3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Cactus/LargeCactus3.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Cactus/SmallCactus1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Cactus/SmallCactus1.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Cactus/SmallCactus2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Cactus/SmallCactus2.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Cactus/SmallCactus3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Cactus/SmallCactus3.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Dino/DinoDead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Dino/DinoDead.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Dino/DinoDuck1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Dino/DinoDuck1.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Dino/DinoDuck2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Dino/DinoDuck2.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Dino/DinoJump.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Dino/DinoJump.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Dino/DinoRun1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Dino/DinoRun1.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Dino/DinoRun2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Dino/DinoRun2.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Dino/DinoStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Dino/DinoStart.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Other/Cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Other/Cloud.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Other/GameOver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Other/GameOver.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Other/Reset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Other/Reset.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Assets/Other/Track.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Assets/Other/Track.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Images/dinosaur-game-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Images/dinosaur-game-menu.png -------------------------------------------------------------------------------- /Python/dinosaur_game/Images/dinosaur-game-play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/Images/dinosaur-game-play.png -------------------------------------------------------------------------------- /Python/dinosaur_game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/README.md -------------------------------------------------------------------------------- /Python/dinosaur_game/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/dinosaur_game/main.py -------------------------------------------------------------------------------- /Python/dinosaur_game/requirements.txt: -------------------------------------------------------------------------------- 1 | pygame==2.0.1 2 | -------------------------------------------------------------------------------- /Python/email_id_extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/email_id_extractor/README.md -------------------------------------------------------------------------------- /Python/email_id_extractor/email_id_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/email_id_extractor/email_id_extractor.py -------------------------------------------------------------------------------- /Python/email_id_extractor/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/email_id_extractor/screenshot.png -------------------------------------------------------------------------------- /Python/email_id_extractor/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/email_id_extractor/setup.py -------------------------------------------------------------------------------- /Python/english-dictionary/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/english-dictionary/.gitignore -------------------------------------------------------------------------------- /Python/english-dictionary/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/english-dictionary/README.md -------------------------------------------------------------------------------- /Python/english-dictionary/define: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/english-dictionary/define -------------------------------------------------------------------------------- /Python/english-dictionary/dictionary.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/english-dictionary/dictionary.csv -------------------------------------------------------------------------------- /Python/english-dictionary/examples/define-csv-key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/english-dictionary/examples/define-csv-key.png -------------------------------------------------------------------------------- /Python/english-dictionary/examples/define-csv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/english-dictionary/examples/define-csv.png -------------------------------------------------------------------------------- /Python/english-dictionary/examples/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/english-dictionary/examples/dog.png -------------------------------------------------------------------------------- /Python/english-dictionary/examples/env.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/english-dictionary/examples/env.png -------------------------------------------------------------------------------- /Python/english-dictionary/examples/human.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/english-dictionary/examples/human.png -------------------------------------------------------------------------------- /Python/english-dictionary/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/english-dictionary/requirements.txt -------------------------------------------------------------------------------- /Python/english-dictionary/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/english-dictionary/search.py -------------------------------------------------------------------------------- /Python/find_broken_links/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/find_broken_links/README.md -------------------------------------------------------------------------------- /Python/find_broken_links/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/find_broken_links/gui.py -------------------------------------------------------------------------------- /Python/find_broken_links/link_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/find_broken_links/link_checker.py -------------------------------------------------------------------------------- /Python/find_broken_links/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/find_broken_links/requirements.txt -------------------------------------------------------------------------------- /Python/find_broken_links/screenshots/Output_NoBrokenLinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/find_broken_links/screenshots/Output_NoBrokenLinks.png -------------------------------------------------------------------------------- /Python/find_broken_links/screenshots/Output_WithBrokenLinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/find_broken_links/screenshots/Output_WithBrokenLinks.png -------------------------------------------------------------------------------- /Python/find_broken_links/screenshots/PreUsage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/find_broken_links/screenshots/PreUsage.png -------------------------------------------------------------------------------- /Python/html_to_pdf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/html_to_pdf/README.md -------------------------------------------------------------------------------- /Python/html_to_pdf/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/html_to_pdf/main.py -------------------------------------------------------------------------------- /Python/html_to_pdf/requirements.txt: -------------------------------------------------------------------------------- 1 | pdfkit==0.6.1 2 | -------------------------------------------------------------------------------- /Python/image-encode-decode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/image-encode-decode/README.md -------------------------------------------------------------------------------- /Python/image-encode-decode/akatsuki.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/image-encode-decode/akatsuki.png -------------------------------------------------------------------------------- /Python/image-encode-decode/decrypted_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/image-encode-decode/decrypted_img.png -------------------------------------------------------------------------------- /Python/image-encode-decode/encrypted_img.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/image-encode-decode/encrypted_img.txt -------------------------------------------------------------------------------- /Python/image-encode-decode/key.txt: -------------------------------------------------------------------------------- 1 | 6347 -------------------------------------------------------------------------------- /Python/image-encode-decode/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/image-encode-decode/script.py -------------------------------------------------------------------------------- /Python/image-encode-decode/script_execution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/image-encode-decode/script_execution.png -------------------------------------------------------------------------------- /Python/image_cartoonizer/Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/image_cartoonizer/Pipfile -------------------------------------------------------------------------------- /Python/image_cartoonizer/Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/image_cartoonizer/Pipfile.lock -------------------------------------------------------------------------------- /Python/image_cartoonizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/image_cartoonizer/README.md -------------------------------------------------------------------------------- /Python/image_cartoonizer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/image_cartoonizer/main.py -------------------------------------------------------------------------------- /Python/image_cartoonizer/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/image_cartoonizer/requirements.txt -------------------------------------------------------------------------------- /Python/image_cartoonizer/tree-cartoon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/image_cartoonizer/tree-cartoon.jpg -------------------------------------------------------------------------------- /Python/image_cartoonizer/tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/image_cartoonizer/tree.jpg -------------------------------------------------------------------------------- /Python/internet_speed_test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/internet_speed_test/README.md -------------------------------------------------------------------------------- /Python/internet_speed_test/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/internet_speed_test/Screenshot.png -------------------------------------------------------------------------------- /Python/internet_speed_test/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/internet_speed_test/main.py -------------------------------------------------------------------------------- /Python/internet_speed_test/requirement.txt: -------------------------------------------------------------------------------- 1 | tkinter 2 | speedtest 3 | -------------------------------------------------------------------------------- /Python/ipl_score_notifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/ipl_score_notifier/README.md -------------------------------------------------------------------------------- /Python/ipl_score_notifier/ipl_score_notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/ipl_score_notifier/ipl_score_notifier.py -------------------------------------------------------------------------------- /Python/ipl_score_notifier/ipl_score_notifier2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/ipl_score_notifier/ipl_score_notifier2.py -------------------------------------------------------------------------------- /Python/ipl_score_notifier/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/ipl_score_notifier/test.png -------------------------------------------------------------------------------- /Python/leaked passwords/1602413429093.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/leaked passwords/1602413429093.png -------------------------------------------------------------------------------- /Python/leaked passwords/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/leaked passwords/README.md -------------------------------------------------------------------------------- /Python/leaked passwords/psw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/leaked passwords/psw.txt -------------------------------------------------------------------------------- /Python/leaked passwords/pswpwner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/leaked passwords/pswpwner.py -------------------------------------------------------------------------------- /Python/leaked passwords/requirements.txt: -------------------------------------------------------------------------------- 1 | termcolor==1.1.0 2 | pyfiglet==0.8.post1 3 | requests==2.23.0 4 | -------------------------------------------------------------------------------- /Python/mac changer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/mac changer/README.md -------------------------------------------------------------------------------- /Python/mac changer/Screenshot_2020-10-14_02-49-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/mac changer/Screenshot_2020-10-14_02-49-31.png -------------------------------------------------------------------------------- /Python/mac changer/macchanger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/mac changer/macchanger.py -------------------------------------------------------------------------------- /Python/mac changer/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/mac changer/main.py -------------------------------------------------------------------------------- /Python/passwordManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/passwordManager/README.md -------------------------------------------------------------------------------- /Python/passwordManager/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/passwordManager/info.txt -------------------------------------------------------------------------------- /Python/passwordManager/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/passwordManager/main.py -------------------------------------------------------------------------------- /Python/pdf_encryptor/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf -------------------------------------------------------------------------------- /Python/pdf_encryptor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/pdf_encryptor/README.md -------------------------------------------------------------------------------- /Python/pdf_encryptor/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Python/pdf_encryptor/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/pdf_encryptor/encrypt.py -------------------------------------------------------------------------------- /Python/pdf_encryptor/images/cli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/pdf_encryptor/images/cli.png -------------------------------------------------------------------------------- /Python/pdf_encryptor/images/encrypted_pdf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/pdf_encryptor/images/encrypted_pdf.png -------------------------------------------------------------------------------- /Python/pdf_encryptor/requirements.txt: -------------------------------------------------------------------------------- 1 | pikepdf -------------------------------------------------------------------------------- /Python/phone number extractor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/phone number extractor/README.md -------------------------------------------------------------------------------- /Python/phone number extractor/Result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/phone number extractor/Result.png -------------------------------------------------------------------------------- /Python/phone number extractor/phonenumber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/phone number extractor/phonenumber.py -------------------------------------------------------------------------------- /Python/pinging-websites/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/pinging-websites/README.md -------------------------------------------------------------------------------- /Python/pinging-websites/pinging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/pinging-websites/pinging.py -------------------------------------------------------------------------------- /Python/pinging-websites/screenshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/pinging-websites/screenshot.PNG -------------------------------------------------------------------------------- /Python/pinging-websites/start_pinging.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/pinging-websites/start_pinging.bat -------------------------------------------------------------------------------- /Python/speech-to-text/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/speech-to-text/README.md -------------------------------------------------------------------------------- /Python/speech-to-text/execution-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/speech-to-text/execution-output.png -------------------------------------------------------------------------------- /Python/speech-to-text/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/speech-to-text/requirements.txt -------------------------------------------------------------------------------- /Python/speech-to-text/sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/speech-to-text/sample.wav -------------------------------------------------------------------------------- /Python/speech-to-text/speech-to-text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/speech-to-text/speech-to-text.py -------------------------------------------------------------------------------- /Python/torrent_seacher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/torrent_seacher/README.md -------------------------------------------------------------------------------- /Python/torrent_seacher/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/torrent_seacher/main.py -------------------------------------------------------------------------------- /Python/torrent_seacher/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | pyperclip 3 | -------------------------------------------------------------------------------- /Python/turtle_race_game/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/turtle_race_game/ReadMe.md -------------------------------------------------------------------------------- /Python/turtle_race_game/race_end.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/turtle_race_game/race_end.jpg -------------------------------------------------------------------------------- /Python/turtle_race_game/race_start.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/turtle_race_game/race_start.jpg -------------------------------------------------------------------------------- /Python/turtle_race_game/turtle_race_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/turtle_race_game/turtle_race_game.py -------------------------------------------------------------------------------- /Python/video_player/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/video_player/README.md -------------------------------------------------------------------------------- /Python/video_player/player.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/video_player/player.py -------------------------------------------------------------------------------- /Python/virus-using-turtle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/virus-using-turtle/README.md -------------------------------------------------------------------------------- /Python/virus-using-turtle/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/virus-using-turtle/requirements.txt -------------------------------------------------------------------------------- /Python/virus-using-turtle/virus-sim-video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/virus-using-turtle/virus-sim-video.mp4 -------------------------------------------------------------------------------- /Python/virus-using-turtle/virus-sim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/virus-using-turtle/virus-sim.png -------------------------------------------------------------------------------- /Python/virus-using-turtle/virus-using-turtle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/virus-using-turtle/virus-using-turtle.py -------------------------------------------------------------------------------- /Python/website-cloner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/website-cloner/README.md -------------------------------------------------------------------------------- /Python/website-cloner/img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/website-cloner/img.png -------------------------------------------------------------------------------- /Python/website-cloner/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/website-cloner/main.py -------------------------------------------------------------------------------- /Python/website-cloner/requirements.txt: -------------------------------------------------------------------------------- 1 | pywebcopy==6.3.0 2 | -------------------------------------------------------------------------------- /Python/wifi_hack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/wifi_hack/README.md -------------------------------------------------------------------------------- /Python/wifi_hack/images/gui_output.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/wifi_hack/images/gui_output.PNG -------------------------------------------------------------------------------- /Python/wifi_hack/images/script.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/wifi_hack/images/script.PNG -------------------------------------------------------------------------------- /Python/wifi_hack/images/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/wifi_hack/images/wifi.png -------------------------------------------------------------------------------- /Python/wifi_hack/wifi_password_getter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/wifi_hack/wifi_password_getter.py -------------------------------------------------------------------------------- /Python/wifi_hack/wifi_password_getter_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/wifi_hack/wifi_password_getter_gui.py -------------------------------------------------------------------------------- /Python/wikipedia_searcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/wikipedia_searcher/README.md -------------------------------------------------------------------------------- /Python/wikipedia_searcher/Searcher_using_API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/wikipedia_searcher/Searcher_using_API/README.md -------------------------------------------------------------------------------- /Python/wikipedia_searcher/Searcher_using_API/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/wikipedia_searcher/Searcher_using_API/requirements.txt -------------------------------------------------------------------------------- /Python/wikipedia_searcher/Searcher_using_API/wiki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/wikipedia_searcher/Searcher_using_API/wiki.py -------------------------------------------------------------------------------- /Python/wikipedia_searcher/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Python/wikipedia_searcher/main.py -------------------------------------------------------------------------------- /Python/wikipedia_searcher/requirements.txt: -------------------------------------------------------------------------------- 1 | wikipedia 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/README.md -------------------------------------------------------------------------------- /Web Hacks/Animations/m4Dummies-Animations/3D-Card/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Animations/m4Dummies-Animations/3D-Card/README.md -------------------------------------------------------------------------------- /Web Hacks/Animations/m4Dummies-Animations/3D-Card/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Animations/m4Dummies-Animations/3D-Card/image.gif -------------------------------------------------------------------------------- /Web Hacks/Animations/m4Dummies-Animations/3D-Card/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Animations/m4Dummies-Animations/3D-Card/index.html -------------------------------------------------------------------------------- /Web Hacks/Animations/m4Dummies-Animations/3D-Card/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Animations/m4Dummies-Animations/3D-Card/script.js -------------------------------------------------------------------------------- /Web Hacks/Animations/m4Dummies-Animations/3D-Card/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Animations/m4Dummies-Animations/3D-Card/style.css -------------------------------------------------------------------------------- /Web Hacks/Animations/m4Dummies-Animations/text-anim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Animations/m4Dummies-Animations/text-anim/README.md -------------------------------------------------------------------------------- /Web Hacks/Animations/m4Dummies-Animations/text-anim/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Animations/m4Dummies-Animations/text-anim/index.html -------------------------------------------------------------------------------- /Web Hacks/Animations/m4Dummies-Animations/text-anim/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Animations/m4Dummies-Animations/text-anim/script.js -------------------------------------------------------------------------------- /Web Hacks/Animations/m4Dummies-Animations/text-anim/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Animations/m4Dummies-Animations/text-anim/style.css -------------------------------------------------------------------------------- /Web Hacks/Animations/m4Dummies-Animations/text-anim/text-anim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Animations/m4Dummies-Animations/text-anim/text-anim.gif -------------------------------------------------------------------------------- /Web Hacks/Hoverboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Hoverboard/README.md -------------------------------------------------------------------------------- /Web Hacks/Hoverboard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Hoverboard/index.html -------------------------------------------------------------------------------- /Web Hacks/Hoverboard/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Hoverboard/screenshot.png -------------------------------------------------------------------------------- /Web Hacks/Preloader/README.md: -------------------------------------------------------------------------------- 1 | # Awesome CSS Preloader 2 | 3 | ![](weatherappscreenshot.png) -------------------------------------------------------------------------------- /Web Hacks/Preloader/capture.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Preloader/capture.gif -------------------------------------------------------------------------------- /Web Hacks/Preloader/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Preloader/index.html -------------------------------------------------------------------------------- /Web Hacks/Preloader/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Preloader/style.css -------------------------------------------------------------------------------- /Web Hacks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/README.md -------------------------------------------------------------------------------- /Web Hacks/Weather App/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Weather App/README.md -------------------------------------------------------------------------------- /Web Hacks/Weather App/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Weather App/bg.jpg -------------------------------------------------------------------------------- /Web Hacks/Weather App/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Weather App/index.html -------------------------------------------------------------------------------- /Web Hacks/Weather App/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Weather App/main.css -------------------------------------------------------------------------------- /Web Hacks/Weather App/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Weather App/main.js -------------------------------------------------------------------------------- /Web Hacks/Weather App/weatherappscreenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/Weather App/weatherappscreenshot.png -------------------------------------------------------------------------------- /Web Hacks/card-slider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/card-slider/README.md -------------------------------------------------------------------------------- /Web Hacks/card-slider/card_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/card-slider/card_slider.png -------------------------------------------------------------------------------- /Web Hacks/card-slider/card_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/card-slider/card_text.png -------------------------------------------------------------------------------- /Web Hacks/card-slider/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/card-slider/index.html -------------------------------------------------------------------------------- /Web Hacks/card-slider/screenshot_card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/card-slider/screenshot_card.png -------------------------------------------------------------------------------- /Web Hacks/card-slider/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/card-slider/style.css -------------------------------------------------------------------------------- /Web Hacks/clock design/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/clock design/README.md -------------------------------------------------------------------------------- /Web Hacks/clock design/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/clock design/index.html -------------------------------------------------------------------------------- /Web Hacks/clock design/screenshot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/clock design/screenshot.PNG -------------------------------------------------------------------------------- /Web Hacks/clock design/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/clock design/style.css -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/README.md -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/package-lock.json -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/package.json -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/public/favicon.ico -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/public/index.html -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/public/logo192.png -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/public/logo512.png -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/public/manifest.json -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/public/robots.txt -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/sidebar-collapsible.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/sidebar-collapsible.gif -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/src/App.css -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/src/App.js -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/src/App.test.js -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/src/components/SideBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/src/components/SideBar.js -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/src/components/SidebarData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/src/components/SidebarData.js -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/src/components/SubMenus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/src/components/SubMenus.js -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/src/index.css -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/src/index.js -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/src/pages/about.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/src/pages/about.js -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/src/pages/contact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/src/pages/contact.js -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/src/pages/extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/src/pages/extra.js -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/src/pages/home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/src/pages/home.js -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/src/pages/projects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/src/pages/projects.js -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/src/reportWebVitals.js -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/src/setupTests.js -------------------------------------------------------------------------------- /Web Hacks/collapsible-side-bar/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/collapsible-side-bar/yarn.lock -------------------------------------------------------------------------------- /Web Hacks/countdown-timer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/countdown-timer/README.md -------------------------------------------------------------------------------- /Web Hacks/countdown-timer/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/countdown-timer/app.js -------------------------------------------------------------------------------- /Web Hacks/countdown-timer/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/countdown-timer/header.png -------------------------------------------------------------------------------- /Web Hacks/countdown-timer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/countdown-timer/index.html -------------------------------------------------------------------------------- /Web Hacks/countdown-timer/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/countdown-timer/styles.css -------------------------------------------------------------------------------- /Web Hacks/face_change_mouse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/face_change_mouse/README.md -------------------------------------------------------------------------------- /Web Hacks/face_change_mouse/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/face_change_mouse/index.html -------------------------------------------------------------------------------- /Web Hacks/face_change_mouse/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/face_change_mouse/screenshot.png -------------------------------------------------------------------------------- /Web Hacks/pdf_from_html/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/pdf_from_html/README.md -------------------------------------------------------------------------------- /Web Hacks/pdf_from_html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/pdf_from_html/index.html -------------------------------------------------------------------------------- /Web Hacks/pdf_from_html/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/pdf_from_html/screenshot.png -------------------------------------------------------------------------------- /Web Hacks/signin_signup_page/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/signin_signup_page/README.md -------------------------------------------------------------------------------- /Web Hacks/signin_signup_page/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/signin_signup_page/index.html -------------------------------------------------------------------------------- /Web Hacks/signin_signup_page/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/signin_signup_page/screenshot.png -------------------------------------------------------------------------------- /Web Hacks/signin_signup_page/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/signin_signup_page/script.js -------------------------------------------------------------------------------- /Web Hacks/signin_signup_page/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/signin_signup_page/style.css -------------------------------------------------------------------------------- /Web Hacks/simple counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/simple counter/README.md -------------------------------------------------------------------------------- /Web Hacks/simple counter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/simple counter/index.html -------------------------------------------------------------------------------- /Web Hacks/simple counter/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/simple counter/screenshot.png -------------------------------------------------------------------------------- /Web Hacks/simple counter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/simple counter/script.js -------------------------------------------------------------------------------- /Web Hacks/simple counter/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/simple counter/style.css -------------------------------------------------------------------------------- /Web Hacks/timeline/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/timeline/.gitignore -------------------------------------------------------------------------------- /Web Hacks/timeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/timeline/README.md -------------------------------------------------------------------------------- /Web Hacks/timeline/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/timeline/package-lock.json -------------------------------------------------------------------------------- /Web Hacks/timeline/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/timeline/package.json -------------------------------------------------------------------------------- /Web Hacks/timeline/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/timeline/public/index.html -------------------------------------------------------------------------------- /Web Hacks/timeline/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/timeline/src/App.css -------------------------------------------------------------------------------- /Web Hacks/timeline/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/timeline/src/App.js -------------------------------------------------------------------------------- /Web Hacks/timeline/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/timeline/src/App.test.js -------------------------------------------------------------------------------- /Web Hacks/timeline/src/InputForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/timeline/src/InputForm.js -------------------------------------------------------------------------------- /Web Hacks/timeline/src/Timeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/timeline/src/Timeline.js -------------------------------------------------------------------------------- /Web Hacks/timeline/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/timeline/src/index.js -------------------------------------------------------------------------------- /Web Hacks/timeline/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/timeline/src/logo.svg -------------------------------------------------------------------------------- /Web Hacks/timeline/src/serviceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/timeline/src/serviceWorker.js -------------------------------------------------------------------------------- /Web Hacks/timeline/src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/timeline/src/setupTests.js -------------------------------------------------------------------------------- /Web Hacks/timeline/timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/Web Hacks/timeline/timeline.png -------------------------------------------------------------------------------- /avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bislara/code-n-stitch/HEAD/avatar.png --------------------------------------------------------------------------------