├── .github ├── ISSUE_TEMPLATE │ └── project----name-your-project-.md └── pull_request_template.md ├── 2048Game ├── README.md ├── favicon.png ├── image.png ├── index.html ├── index.js └── style.css ├── Animated_Login_UI ├── images │ ├── Forgot.svg │ ├── Login.svg │ ├── Register.svg │ └── page.gif ├── main.css ├── main.html ├── main.js └── readme.md ├── Background_Color_Changer ├── Readme.md ├── index.html ├── main.js └── style.css ├── Ball-paddleGame ├── README.MD ├── app.js ├── ball.png ├── brick.png ├── index.html └── sound.wav ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CV_Generator ├── .gitignore ├── README.md ├── app.js ├── package-lock.json ├── package.json ├── public │ ├── css │ │ ├── all.css │ │ ├── all.min.css │ │ ├── brands.css │ │ ├── brands.min.css │ │ ├── forms.css │ │ ├── icon-font.css │ │ ├── icon-font │ │ │ ├── linea-basic-10.eot │ │ │ ├── linea-basic-10.svg │ │ │ ├── linea-basic-10.ttf │ │ │ └── linea-basic-10.woff │ │ ├── styles.css │ │ └── webfonts │ │ │ ├── fa-brands-400.eot │ │ │ ├── fa-brands-400.svg │ │ │ ├── fa-brands-400.ttf │ │ │ ├── fa-brands-400.woff │ │ │ ├── fa-brands-400.woff2 │ │ │ ├── fa-regular-400.eot │ │ │ ├── fa-regular-400.svg │ │ │ ├── fa-regular-400.ttf │ │ │ ├── fa-regular-400.woff │ │ │ ├── fa-regular-400.woff2 │ │ │ ├── fa-solid-900.eot │ │ │ ├── fa-solid-900.svg │ │ │ ├── fa-solid-900.ttf │ │ │ ├── fa-solid-900.woff │ │ │ └── fa-solid-900.woff2 │ └── img │ │ ├── back_1.jpg │ │ ├── back_2.jpg │ │ ├── cert-1.jpg │ │ ├── cert-2.jpg │ │ ├── envelope-solid.svg │ │ ├── facebook-square-brands.svg │ │ ├── favicon.ico │ │ ├── form.jpg │ │ ├── instagram-brands.svg │ │ ├── linkedin-in-brands.svg │ │ ├── photo-1-uncahnged.jpeg │ │ ├── photo-1.jpg │ │ ├── photo-2-unchanged.jpeg │ │ ├── photo-2.jpg │ │ ├── photo-3-uncahnged.jpeg │ │ ├── photo-3.jpg │ │ ├── resume_logo.png │ │ ├── skills_1.jpg │ │ ├── skills_2.jpg │ │ ├── skills_3.jpg │ │ ├── video.mp4 │ │ └── video.webm ├── sass │ ├── abstract │ │ ├── _functions.scss │ │ ├── _mixins.scss │ │ └── _variables.scss │ ├── base │ │ ├── _animations.scss │ │ ├── _base.scss │ │ ├── _typography.scss │ │ └── _utilities.scss │ ├── components │ │ ├── _bg-video.scss │ │ ├── _button.scss │ │ ├── _card.scss │ │ ├── _cert.scss │ │ ├── _composition.scss │ │ ├── _header.scss │ │ └── _hobby-box.scss │ ├── layout │ │ ├── _grid.scss │ │ └── _navigation.scss │ ├── main.scss │ └── pages │ │ └── _home.scss └── views │ ├── form.ejs │ └── index.ejs ├── ClimbingGame ├── back.jpeg ├── climber_sprite.png ├── climbing_the_flagpole.js ├── index.html ├── man.png ├── man_sprite.piskel ├── pole.png ├── pole.xcf ├── poleDone.png └── spritestrip.png ├── Commalator ├── README.md ├── checklist.png ├── demo.gif ├── index.html ├── script.js └── style.css ├── ConwaysGameOfLife ├── README.md ├── app.js ├── css │ └── style.css ├── examples │ ├── Crawler.gif │ └── block_with_border.svg ├── index.html └── jsconfig.json ├── Dark_Mode_Toggler ├── Readme.md ├── images │ ├── dark.gif │ └── doc.svg ├── main.html ├── styler.css └── toggler.js ├── Dice_Game ├── Readme.md ├── game.html ├── images │ ├── dice1.png │ ├── dice2.png │ ├── dice3.png │ ├── dice4.png │ ├── dice5.png │ ├── dice6.png │ └── favicon.png ├── index.html ├── input.js ├── script.js ├── style.css └── styles.css ├── Drum-machine ├── README.md ├── app.js └── index.html ├── FuzzyExtensionPrinciple-ShiviDev ├── FuzzyMath.c └── readme.md ├── Guess-The-Bollywood-Movie ├── Readme.md ├── index.html ├── index.js └── styles │ └── styles.css ├── Hacktoberfest_Countdown_Timer ├── Readme.md ├── count_timer.js ├── images │ ├── giphy.gif │ ├── ico.svg │ └── iconlr.svg ├── landing-page.html └── page-style.css ├── Image-Cropper ├── README.md ├── cropper.py ├── demo.gif └── ss.png ├── Javascript_Quiz-pratikroy107 ├── README.md ├── index.html ├── script.js └── style.css ├── LICENSE ├── LandingPage ├── Readme.md ├── index.html ├── landing page.png ├── style.css └── undraw_things_to_say_ewwb (1).svg ├── Magic square calculator ├── Readme.md ├── app.js ├── index.html └── styles.css ├── Math-Chaos ├── README.md ├── index.html └── main.js ├── MemoryGame ├── README.md ├── blank.png ├── cheeseburger.png ├── fries.png ├── hotdog.png ├── ice-cream.png ├── index.html ├── index.js ├── milkshake.png ├── pizza.png ├── style.css └── white.png ├── MineSweeper-Ayush21042002 ├── app.js ├── index.html ├── lose.PNG ├── minesweeper.gif ├── readme.md ├── style.css └── win.PNG ├── Neumorphic-Calculator ├── README.md ├── index.html ├── index.js └── style.css ├── NewsApp_Flask ├── app.py ├── assets │ └── snap.png ├── readme.md ├── requirements.txt └── templates │ └── news.html ├── Notepad-siddhantkhariwal ├── Readme.md ├── index.html ├── script.js ├── skrr.jpg ├── undraw_Add_notes_re_ln36.svg └── undraw_Notebook_re_id0r.svg ├── NotesApp(7suyash7) ├── index.html ├── readme.md └── script.js ├── Number_Guessing_Game ├── README.md ├── index.html ├── script.js └── styles.css ├── Phone-Number-Validator ├── app.js ├── index.html ├── project.gif ├── readme.md └── style.css ├── Phoxy-swapnil0709 ├── Images │ └── icons.svg ├── README.md ├── app.js ├── ezgif.com-gif-maker.gif ├── ezgif.com-gif-maker.gifZone.Identifier ├── index.html ├── phoxy.png └── styles │ ├── _global.scss │ ├── style.css │ ├── style.css.map │ └── style.scss ├── Profile-Extension ├── codeforces.png ├── github.png ├── insta.png ├── linkedin.png ├── manifest.json ├── nactore.png └── popup.html ├── README.md ├── Rock-Paper-Scissors ├── README.md ├── background.gif ├── index.html ├── index.js └── style.css ├── SWOT-Analysis-Generator ├── README.md ├── compute.js ├── generated.css ├── generated.html ├── generated.js ├── index.html ├── style.css ├── swot.png └── swot1.png ├── Shades-ColorGenerator ├── .gitignore ├── README.md ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt └── src │ ├── App.js │ ├── SingleColor.js │ ├── index.css │ ├── index.js │ ├── shades.PNG │ └── utils.js ├── SnakeGame-thetribunalcode ├── food.py ├── main.py ├── readme.md ├── scoreboard.py ├── snake.gif └── snake.py ├── Space-Invaders-Js ├── README.md ├── app.js ├── design.css ├── index.html └── space-invaders_gif.gif ├── Spotify-Clone └── spotify-clone-app │ ├── .gitignore │ ├── README.md │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt │ └── src │ ├── App.js │ ├── DataLayer.js │ ├── Header.css │ ├── Header.js │ ├── Login.css │ ├── Login.js │ ├── Player.css │ ├── Player.js │ ├── PlayingTrack.js │ ├── Readme.md │ ├── TrackSearch.css │ ├── TrackSearch.js │ ├── image │ └── spotify-clone.png │ ├── index.css │ ├── index.js │ ├── reducer.js │ ├── reportWebVitals.js │ └── spotify.js ├── StockPriceAlerter ├── app.js ├── package-lock.json ├── package.json └── readme.md ├── Stopwatch ├── .gitignore ├── README.md ├── index.html ├── index.js ├── package-lock.json ├── package.json ├── src │ ├── demo.gif │ └── index.js └── style.css ├── Tic Tac Toe ├── README.md ├── index.html ├── index.js └── style.css ├── Todo ├── ReadMe.md ├── index.html ├── script.js └── style.css ├── Virtual-Health-Care-Website ├── 608326eb86c7bfa01fce444f_Virtula Booth.gif ├── FoodPanda-logo.png ├── README.md ├── Swiggy-logo.png ├── Uber-Eats-logo.png ├── apollo-clinic.png ├── arijitmain2.jpg ├── ashu-pic.png ├── blur-arijit.jpg ├── blur-ashu2.png ├── blur-pratik.jpg ├── blur-raghav.jpg ├── cvwfsbihpeeewegf0plm.png ├── giphy-coronavirus.gif ├── images │ ├── logof.jpg │ └── logof.png ├── index.html ├── logof.png ├── pratik-pic.jpg ├── raghav-pic.jpg ├── services │ ├── 1-medicine-home-delivery.css │ ├── 1-medicine-home-delivery.html │ ├── 1-medicine-submit.html │ ├── 2-instant-ambulance-submit.html │ ├── 2-instant-ambulance.css │ ├── 2-instant-ambulance.html │ ├── 3-doctor-submit.html │ ├── 3-doctor.css │ ├── 3-doctor.html │ ├── 4-vaccine-submit.html │ ├── 4-vaccine.css │ ├── 4-vaccine.html │ ├── 5-food-submit.html │ ├── 5-food.css │ ├── 5-food.html │ ├── 6-sanitize-submit.html │ ├── 6-sanitize.css │ ├── 6-sanitize.html │ ├── 7-testcovid-submit.html │ ├── 7-testcovid.css │ ├── 7-testcovid.html │ ├── 8-cylinder-submit.html │ ├── 8-cylinder.css │ ├── 8-cylinder.html │ ├── logof.jpg │ └── logof.png ├── style.css └── zomato-logo-0.png ├── Weather_Forecast ├── Readme.md ├── images │ ├── d.jpg │ └── image.gif ├── index.html ├── script.js └── styles.css ├── Word_Counter ├── README.md ├── index.html ├── script.js └── styles.css ├── Zomato-clone ├── .vscode │ └── settings.json ├── README.md ├── assets │ ├── burger.jpg │ ├── hero.jpg │ ├── iceCream.jpg │ ├── jason-dent-S53ekmu8KkE-unsplash.jpg │ ├── logo.png │ ├── main_back.png │ ├── man.png │ ├── overlay.jpeg │ ├── pizza.jpg │ ├── restaurant.jpg │ ├── restaurant1.jpg │ ├── restaurant2.jpg │ ├── restaurant3.jpg │ ├── restaurant4.jpg │ └── svg │ │ ├── heroShape.svg │ │ └── herobgpattren.svg ├── index.html └── style.css ├── animation ├── animation.html ├── instructions.txt ├── newDesignRes │ ├── css │ │ ├── .DS_Store │ │ ├── animate.css │ │ ├── bootstrap-grid.css │ │ ├── bootstrap-grid.css.map │ │ ├── bootstrap-grid.min.css │ │ ├── bootstrap-grid.min.css.map │ │ ├── bootstrap-reboot.css │ │ ├── bootstrap-reboot.css.map │ │ ├── bootstrap-reboot.min.css │ │ ├── bootstrap-reboot.min.css.map │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ ├── bootstrap.min.css │ │ ├── bootstrap.min.css.map │ │ ├── fix.css │ │ ├── main.css │ │ ├── mainFix.css │ │ ├── mainMedium.css │ │ ├── mainSmall.css │ │ └── mini.css │ ├── font │ │ ├── BEBAS.ttf │ │ ├── GeosansLight.ttf │ │ ├── LemonMilk.otf │ │ ├── Regular.ttf │ │ ├── Tourmaline-Printed.ttf │ │ ├── Vogue.ttf │ │ ├── coolvetica.ttf │ │ ├── hel.ttf │ │ └── meg.ttf │ └── js │ │ ├── bootstrap.bundle.js │ │ ├── bootstrap.bundle.js.map │ │ ├── bootstrap.bundle.min.js │ │ ├── bootstrap.bundle.min.js.map │ │ ├── bootstrap.js │ │ ├── bootstrap.js.map │ │ ├── bootstrap.min.js │ │ └── bootstrap.min.js.map └── pageResources │ ├── cropped.mp4 │ ├── cropped.ogv │ ├── cropped.webm │ ├── script.js │ ├── untitled.png │ └── untitlednew.png ├── clock_js ├── clock.js ├── index.html └── style.css ├── icon ├── linea_basic_1.0 │ ├── _ICONFONT │ │ ├── .DS_Store │ │ ├── fonts │ │ │ ├── linea-basic-10.eot │ │ │ ├── linea-basic-10.svg │ │ │ ├── linea-basic-10.ttf │ │ │ └── linea-basic-10.woff │ │ ├── icons-reference.html │ │ └── styles.css │ ├── _PNG 64 │ │ ├── .DS_Store │ │ ├── basic_accelerator.png │ │ ├── basic_alarm.png │ │ ├── basic_anchor.png │ │ ├── basic_anticlockwise.png │ │ ├── basic_archive.png │ │ ├── basic_archive_full.png │ │ ├── basic_ban.png │ │ ├── basic_battery_charge.png │ │ ├── basic_battery_empty.png │ │ ├── basic_battery_full.png │ │ ├── basic_battery_half.png │ │ ├── basic_bolt.png │ │ ├── basic_book.png │ │ ├── basic_book_pen.png │ │ ├── basic_book_pencil.png │ │ ├── basic_bookmark.png │ │ ├── basic_calculator.png │ │ ├── basic_calendar.png │ │ ├── basic_cards_diamonds.png │ │ ├── basic_cards_hearts.png │ │ ├── basic_case.png │ │ ├── basic_chronometer.png │ │ ├── basic_clessidre.png │ │ ├── basic_clock.png │ │ ├── basic_clockwise.png │ │ ├── basic_cloud.png │ │ ├── basic_clubs.png │ │ ├── basic_compass.png │ │ ├── basic_cup.png │ │ ├── basic_diamonds.png │ │ ├── basic_display.png │ │ ├── basic_download.png │ │ ├── basic_exclamation.png │ │ ├── basic_eye.png │ │ ├── basic_eye_closed.png │ │ ├── basic_female.png │ │ ├── basic_flag1.png │ │ ├── basic_flag2.png │ │ ├── basic_floppydisk.png │ │ ├── basic_folder.png │ │ ├── basic_folder_multiple.png │ │ ├── basic_gear.png │ │ ├── basic_geolocalize-01.png │ │ ├── basic_geolocalize-05.png │ │ ├── basic_globe.png │ │ ├── basic_gunsight.png │ │ ├── basic_hammer.png │ │ ├── basic_headset.png │ │ ├── basic_heart.png │ │ ├── basic_heart_broken.png │ │ ├── basic_helm.png │ │ ├── basic_home.png │ │ ├── basic_info.png │ │ ├── basic_ipod.png │ │ ├── basic_joypad.png │ │ ├── basic_key.png │ │ ├── basic_keyboard.png │ │ ├── basic_laptop.png │ │ ├── basic_life_buoy.png │ │ ├── basic_lightbulb.png │ │ ├── basic_link.png │ │ ├── basic_lock.png │ │ ├── basic_lock_open.png │ │ ├── basic_magic_mouse.png │ │ ├── basic_magnifier.png │ │ ├── basic_magnifier_minus.png │ │ ├── basic_magnifier_plus.png │ │ ├── basic_mail.png │ │ ├── basic_mail_multiple.png │ │ ├── basic_mail_open.png │ │ ├── basic_mail_open_text.png │ │ ├── basic_male.png │ │ ├── basic_map.png │ │ ├── basic_message.png │ │ ├── basic_message_multiple.png │ │ ├── basic_message_txt.png │ │ ├── basic_mixer2.png │ │ ├── basic_mouse.png │ │ ├── basic_notebook.png │ │ ├── basic_notebook_pen.png │ │ ├── basic_notebook_pencil.png │ │ ├── basic_paperplane.png │ │ ├── basic_pencil_ruler.png │ │ ├── basic_pencil_ruler_pen .png │ │ ├── basic_photo.png │ │ ├── basic_picture.png │ │ ├── basic_picture_multiple.png │ │ ├── basic_pin1.png │ │ ├── basic_pin2.png │ │ ├── basic_postcard.png │ │ ├── basic_postcard_multiple.png │ │ ├── basic_printer.png │ │ ├── basic_question.png │ │ ├── basic_rss.png │ │ ├── basic_server.png │ │ ├── basic_server2.png │ │ ├── basic_server_cloud.png │ │ ├── basic_server_download.png │ │ ├── basic_server_upload.png │ │ ├── basic_settings.png │ │ ├── basic_share.png │ │ ├── basic_sheet.png │ │ ├── basic_sheet_multiple .png │ │ ├── basic_sheet_pen.png │ │ ├── basic_sheet_pencil.png │ │ ├── basic_sheet_txt .png │ │ ├── basic_signs.png │ │ ├── basic_smartphone.png │ │ ├── basic_spades.png │ │ ├── basic_spread.png │ │ ├── basic_spread_bookmark.png │ │ ├── basic_spread_text.png │ │ ├── basic_spread_text_bookmark.png │ │ ├── basic_star.png │ │ ├── basic_tablet.png │ │ ├── basic_target.png │ │ ├── basic_todo.png │ │ ├── basic_todo_pen .png │ │ ├── basic_todo_pencil.png │ │ ├── basic_todo_txt.png │ │ ├── basic_todolist_pen.png │ │ ├── basic_todolist_pencil.png │ │ ├── basic_trashcan.png │ │ ├── basic_trashcan_full.png │ │ ├── basic_trashcan_refresh.png │ │ ├── basic_trashcan_remove.png │ │ ├── basic_upload.png │ │ ├── basic_usb.png │ │ ├── basic_video.png │ │ ├── basic_watch.png │ │ ├── basic_webpage.png │ │ ├── basic_webpage_img_txt.png │ │ ├── basic_webpage_multiple.png │ │ ├── basic_webpage_txt.png │ │ └── basic_world.png │ ├── _SVG expanded │ │ ├── .DS_Store │ │ ├── basic_accelerator.svg │ │ ├── basic_alarm.svg │ │ ├── basic_anchor.svg │ │ ├── basic_anticlockwise.svg │ │ ├── basic_archive.svg │ │ ├── basic_archive_full.svg │ │ ├── basic_ban.svg │ │ ├── basic_battery_charge.svg │ │ ├── basic_battery_empty.svg │ │ ├── basic_battery_full.svg │ │ ├── basic_battery_half.svg │ │ ├── basic_bolt.svg │ │ ├── basic_book.svg │ │ ├── basic_book_pen.svg │ │ ├── basic_book_pencil.svg │ │ ├── basic_bookmark.svg │ │ ├── basic_calculator.svg │ │ ├── basic_calendar.svg │ │ ├── basic_cards_diamonds.svg │ │ ├── basic_cards_hearts.svg │ │ ├── basic_case.svg │ │ ├── basic_chronometer.svg │ │ ├── basic_clessidre.svg │ │ ├── basic_clock.svg │ │ ├── basic_clockwise.svg │ │ ├── basic_cloud.svg │ │ ├── basic_clubs.svg │ │ ├── basic_compass.svg │ │ ├── basic_cup.svg │ │ ├── basic_diamonds.svg │ │ ├── basic_display.svg │ │ ├── basic_download.svg │ │ ├── basic_exclamation.svg │ │ ├── basic_eye.svg │ │ ├── basic_eye_closed.svg │ │ ├── basic_female.svg │ │ ├── basic_flag1.svg │ │ ├── basic_flag2.svg │ │ ├── basic_floppydisk.svg │ │ ├── basic_folder.svg │ │ ├── basic_folder_multiple.svg │ │ ├── basic_gear.svg │ │ ├── basic_geolocalize-01.svg │ │ ├── basic_geolocalize-05.svg │ │ ├── basic_globe.svg │ │ ├── basic_gunsight.svg │ │ ├── basic_hammer.svg │ │ ├── basic_headset.svg │ │ ├── basic_heart.svg │ │ ├── basic_heart_broken.svg │ │ ├── basic_helm.svg │ │ ├── basic_home.svg │ │ ├── basic_info.svg │ │ ├── basic_ipod.svg │ │ ├── basic_joypad.svg │ │ ├── basic_key.svg │ │ ├── basic_keyboard.svg │ │ ├── basic_laptop.svg │ │ ├── basic_life_buoy.svg │ │ ├── basic_lightbulb.svg │ │ ├── basic_link.svg │ │ ├── basic_lock.svg │ │ ├── basic_lock_open.svg │ │ ├── basic_magic_mouse.svg │ │ ├── basic_magnifier.svg │ │ ├── basic_magnifier_minus.svg │ │ ├── basic_magnifier_plus.svg │ │ ├── basic_mail.svg │ │ ├── basic_mail_multiple.svg │ │ ├── basic_mail_open.svg │ │ ├── basic_mail_open_text.svg │ │ ├── basic_male.svg │ │ ├── basic_map.svg │ │ ├── basic_message.svg │ │ ├── basic_message_multiple.svg │ │ ├── basic_message_txt.svg │ │ ├── basic_mixer2.svg │ │ ├── basic_mouse.svg │ │ ├── basic_notebook.svg │ │ ├── basic_notebook_pen.svg │ │ ├── basic_notebook_pencil.svg │ │ ├── basic_paperplane.svg │ │ ├── basic_pencil_ruler.svg │ │ ├── basic_pencil_ruler_pen .svg │ │ ├── basic_photo.svg │ │ ├── basic_picture.svg │ │ ├── basic_picture_multiple.svg │ │ ├── basic_pin1.svg │ │ ├── basic_pin2.svg │ │ ├── basic_postcard.svg │ │ ├── basic_postcard_multiple.svg │ │ ├── basic_printer.svg │ │ ├── basic_question.svg │ │ ├── basic_rss.svg │ │ ├── basic_server.svg │ │ ├── basic_server2.svg │ │ ├── basic_server_cloud.svg │ │ ├── basic_server_download.svg │ │ ├── basic_server_upload.svg │ │ ├── basic_settings.svg │ │ ├── basic_share.svg │ │ ├── basic_sheet.svg │ │ ├── basic_sheet_multiple .svg │ │ ├── basic_sheet_pen.svg │ │ ├── basic_sheet_pencil.svg │ │ ├── basic_sheet_txt .svg │ │ ├── basic_signs.svg │ │ ├── basic_smartphone.svg │ │ ├── basic_spades.svg │ │ ├── basic_spread.svg │ │ ├── basic_spread_bookmark.svg │ │ ├── basic_spread_text.svg │ │ ├── basic_spread_text_bookmark.svg │ │ ├── basic_star.svg │ │ ├── basic_tablet.svg │ │ ├── basic_target.svg │ │ ├── basic_todo.svg │ │ ├── basic_todo_pen .svg │ │ ├── basic_todo_pencil.svg │ │ ├── basic_todo_txt.svg │ │ ├── basic_todolist_pen.svg │ │ ├── basic_todolist_pencil.svg │ │ ├── basic_trashcan.svg │ │ ├── basic_trashcan_full.svg │ │ ├── basic_trashcan_refresh.svg │ │ ├── basic_trashcan_remove.svg │ │ ├── basic_upload.svg │ │ ├── basic_usb.svg │ │ ├── basic_video.svg │ │ ├── basic_watch.svg │ │ ├── basic_webpage.svg │ │ ├── basic_webpage_img_txt.svg │ │ ├── basic_webpage_multiple.svg │ │ ├── basic_webpage_txt.svg │ │ └── basic_world.svg │ ├── _SVG │ │ ├── .DS_Store │ │ ├── basic_accelerator.svg │ │ ├── basic_alarm.svg │ │ ├── basic_anchor.svg │ │ ├── basic_anticlockwise.svg │ │ ├── basic_archive.svg │ │ ├── basic_archive_full.svg │ │ ├── basic_ban.svg │ │ ├── basic_battery_charge.svg │ │ ├── basic_battery_empty.svg │ │ ├── basic_battery_full.svg │ │ ├── basic_battery_half.svg │ │ ├── basic_bolt.svg │ │ ├── basic_book.svg │ │ ├── basic_book_pen.svg │ │ ├── basic_book_pencil.svg │ │ ├── basic_bookmark.svg │ │ ├── basic_calculator.svg │ │ ├── basic_calendar.svg │ │ ├── basic_cards_diamonds.svg │ │ ├── basic_cards_hearts.svg │ │ ├── basic_case.svg │ │ ├── basic_chronometer.svg │ │ ├── basic_clessidre.svg │ │ ├── basic_clock.svg │ │ ├── basic_clockwise.svg │ │ ├── basic_cloud.svg │ │ ├── basic_clubs.svg │ │ ├── basic_compass.svg │ │ ├── basic_cup.svg │ │ ├── basic_diamonds.svg │ │ ├── basic_display.svg │ │ ├── basic_download.svg │ │ ├── basic_exclamation.svg │ │ ├── basic_eye.svg │ │ ├── basic_eye_closed.svg │ │ ├── basic_female.svg │ │ ├── basic_flag1.svg │ │ ├── basic_flag2.svg │ │ ├── basic_floppydisk.svg │ │ ├── basic_folder.svg │ │ ├── basic_folder_multiple.svg │ │ ├── basic_gear.svg │ │ ├── basic_geolocalize-01.svg │ │ ├── basic_geolocalize-05.svg │ │ ├── basic_globe.svg │ │ ├── basic_gunsight.svg │ │ ├── basic_hammer.svg │ │ ├── basic_headset.svg │ │ ├── basic_heart.svg │ │ ├── basic_heart_broken.svg │ │ ├── basic_helm.svg │ │ ├── basic_home.svg │ │ ├── basic_info.svg │ │ ├── basic_ipod.svg │ │ ├── basic_joypad.svg │ │ ├── basic_key.svg │ │ ├── basic_keyboard.svg │ │ ├── basic_laptop.svg │ │ ├── basic_life_buoy.svg │ │ ├── basic_lightbulb.svg │ │ ├── basic_link.svg │ │ ├── basic_lock.svg │ │ ├── basic_lock_open.svg │ │ ├── basic_magic_mouse.svg │ │ ├── basic_magnifier.svg │ │ ├── basic_magnifier_minus.svg │ │ ├── basic_magnifier_plus.svg │ │ ├── basic_mail.svg │ │ ├── basic_mail_multiple.svg │ │ ├── basic_mail_open.svg │ │ ├── basic_mail_open_text.svg │ │ ├── basic_male.svg │ │ ├── basic_map.svg │ │ ├── basic_message.svg │ │ ├── basic_message_multiple.svg │ │ ├── basic_message_txt.svg │ │ ├── basic_mixer2.svg │ │ ├── basic_mouse.svg │ │ ├── basic_notebook.svg │ │ ├── basic_notebook_pen.svg │ │ ├── basic_notebook_pencil.svg │ │ ├── basic_paperplane.svg │ │ ├── basic_pencil_ruler.svg │ │ ├── basic_pencil_ruler_pen .svg │ │ ├── basic_photo.svg │ │ ├── basic_picture.svg │ │ ├── basic_picture_multiple.svg │ │ ├── basic_pin1.svg │ │ ├── basic_pin2.svg │ │ ├── basic_postcard.svg │ │ ├── basic_postcard_multiple.svg │ │ ├── basic_printer.svg │ │ ├── basic_question.svg │ │ ├── basic_rss.svg │ │ ├── basic_server.svg │ │ ├── basic_server2.svg │ │ ├── basic_server_cloud.svg │ │ ├── basic_server_download.svg │ │ ├── basic_server_upload.svg │ │ ├── basic_settings.svg │ │ ├── basic_share.svg │ │ ├── basic_sheet.svg │ │ ├── basic_sheet_multiple .svg │ │ ├── basic_sheet_pen.svg │ │ ├── basic_sheet_pencil.svg │ │ ├── basic_sheet_txt .svg │ │ ├── basic_signs.svg │ │ ├── basic_smartphone.svg │ │ ├── basic_spades.svg │ │ ├── basic_spread.svg │ │ ├── basic_spread_bookmark.svg │ │ ├── basic_spread_text.svg │ │ ├── basic_spread_text_bookmark.svg │ │ ├── basic_star.svg │ │ ├── basic_tablet.svg │ │ ├── basic_target.svg │ │ ├── basic_todo.svg │ │ ├── basic_todo_pen .svg │ │ ├── basic_todo_pencil.svg │ │ ├── basic_todo_txt.svg │ │ ├── basic_todolist_pen.svg │ │ ├── basic_todolist_pencil.svg │ │ ├── basic_trashcan.svg │ │ ├── basic_trashcan_full.svg │ │ ├── basic_trashcan_refresh.svg │ │ ├── basic_trashcan_remove.svg │ │ ├── basic_upload.svg │ │ ├── basic_usb.svg │ │ ├── basic_video.svg │ │ ├── basic_watch.svg │ │ ├── basic_webpage.svg │ │ ├── basic_webpage_img_txt.svg │ │ ├── basic_webpage_multiple.svg │ │ ├── basic_webpage_txt.svg │ │ └── basic_world.svg │ ├── __MACOSX │ │ ├── ._linea_basic_1.0.jpg │ │ ├── ._read_me.txt │ │ ├── _ICONFONT │ │ │ ├── ._.DS_Store │ │ │ ├── ._fonts │ │ │ ├── ._icons-reference.html │ │ │ ├── ._styles.css │ │ │ └── fonts │ │ │ │ ├── ._linea-basic-10.eot │ │ │ │ ├── ._linea-basic-10.svg │ │ │ │ ├── ._linea-basic-10.ttf │ │ │ │ └── ._linea-basic-10.woff │ │ ├── _PNG 64 │ │ │ ├── ._.DS_Store │ │ │ ├── ._basic_accelerator.png │ │ │ ├── ._basic_alarm.png │ │ │ ├── ._basic_anchor.png │ │ │ ├── ._basic_anticlockwise.png │ │ │ ├── ._basic_archive.png │ │ │ ├── ._basic_archive_full.png │ │ │ ├── ._basic_ban.png │ │ │ ├── ._basic_battery_charge.png │ │ │ ├── ._basic_battery_empty.png │ │ │ ├── ._basic_battery_full.png │ │ │ ├── ._basic_battery_half.png │ │ │ ├── ._basic_bolt.png │ │ │ ├── ._basic_book.png │ │ │ ├── ._basic_book_pen.png │ │ │ ├── ._basic_book_pencil.png │ │ │ ├── ._basic_bookmark.png │ │ │ ├── ._basic_calculator.png │ │ │ ├── ._basic_calendar.png │ │ │ ├── ._basic_cards_diamonds.png │ │ │ ├── ._basic_cards_hearts.png │ │ │ ├── ._basic_case.png │ │ │ ├── ._basic_chronometer.png │ │ │ ├── ._basic_clessidre.png │ │ │ ├── ._basic_clock.png │ │ │ ├── ._basic_clockwise.png │ │ │ ├── ._basic_cloud.png │ │ │ ├── ._basic_clubs.png │ │ │ ├── ._basic_compass.png │ │ │ ├── ._basic_cup.png │ │ │ ├── ._basic_diamonds.png │ │ │ ├── ._basic_display.png │ │ │ ├── ._basic_download.png │ │ │ ├── ._basic_exclamation.png │ │ │ ├── ._basic_eye.png │ │ │ ├── ._basic_eye_closed.png │ │ │ ├── ._basic_female.png │ │ │ ├── ._basic_flag1.png │ │ │ ├── ._basic_flag2.png │ │ │ ├── ._basic_floppydisk.png │ │ │ ├── ._basic_folder.png │ │ │ ├── ._basic_folder_multiple.png │ │ │ ├── ._basic_gear.png │ │ │ ├── ._basic_geolocalize-01.png │ │ │ ├── ._basic_geolocalize-05.png │ │ │ ├── ._basic_globe.png │ │ │ ├── ._basic_gunsight.png │ │ │ ├── ._basic_hammer.png │ │ │ ├── ._basic_headset.png │ │ │ ├── ._basic_heart.png │ │ │ ├── ._basic_heart_broken.png │ │ │ ├── ._basic_helm.png │ │ │ ├── ._basic_home.png │ │ │ ├── ._basic_info.png │ │ │ ├── ._basic_ipod.png │ │ │ ├── ._basic_joypad.png │ │ │ ├── ._basic_key.png │ │ │ ├── ._basic_keyboard.png │ │ │ ├── ._basic_laptop.png │ │ │ ├── ._basic_life_buoy.png │ │ │ ├── ._basic_lightbulb.png │ │ │ ├── ._basic_link.png │ │ │ ├── ._basic_lock.png │ │ │ ├── ._basic_lock_open.png │ │ │ ├── ._basic_magic_mouse.png │ │ │ ├── ._basic_magnifier.png │ │ │ ├── ._basic_magnifier_minus.png │ │ │ ├── ._basic_magnifier_plus.png │ │ │ ├── ._basic_mail.png │ │ │ ├── ._basic_mail_multiple.png │ │ │ ├── ._basic_mail_open.png │ │ │ ├── ._basic_mail_open_text.png │ │ │ ├── ._basic_male.png │ │ │ ├── ._basic_map.png │ │ │ ├── ._basic_message.png │ │ │ ├── ._basic_message_multiple.png │ │ │ ├── ._basic_message_txt.png │ │ │ ├── ._basic_mixer2.png │ │ │ ├── ._basic_mouse.png │ │ │ ├── ._basic_notebook.png │ │ │ ├── ._basic_notebook_pen.png │ │ │ ├── ._basic_notebook_pencil.png │ │ │ ├── ._basic_paperplane.png │ │ │ ├── ._basic_pencil_ruler.png │ │ │ ├── ._basic_pencil_ruler_pen .png │ │ │ ├── ._basic_photo.png │ │ │ ├── ._basic_picture.png │ │ │ ├── ._basic_picture_multiple.png │ │ │ ├── ._basic_pin1.png │ │ │ ├── ._basic_pin2.png │ │ │ ├── ._basic_postcard.png │ │ │ ├── ._basic_postcard_multiple.png │ │ │ ├── ._basic_printer.png │ │ │ ├── ._basic_question.png │ │ │ ├── ._basic_rss.png │ │ │ ├── ._basic_server.png │ │ │ ├── ._basic_server2.png │ │ │ ├── ._basic_server_cloud.png │ │ │ ├── ._basic_server_download.png │ │ │ ├── ._basic_server_upload.png │ │ │ ├── ._basic_settings.png │ │ │ ├── ._basic_share.png │ │ │ ├── ._basic_sheet.png │ │ │ ├── ._basic_sheet_multiple .png │ │ │ ├── ._basic_sheet_pen.png │ │ │ ├── ._basic_sheet_pencil.png │ │ │ ├── ._basic_sheet_txt .png │ │ │ ├── ._basic_signs.png │ │ │ ├── ._basic_smartphone.png │ │ │ ├── ._basic_spades.png │ │ │ ├── ._basic_spread.png │ │ │ ├── ._basic_spread_bookmark.png │ │ │ ├── ._basic_spread_text.png │ │ │ ├── ._basic_spread_text_bookmark.png │ │ │ ├── ._basic_star.png │ │ │ ├── ._basic_tablet.png │ │ │ ├── ._basic_target.png │ │ │ ├── ._basic_todo.png │ │ │ ├── ._basic_todo_pen .png │ │ │ ├── ._basic_todo_pencil.png │ │ │ ├── ._basic_todo_txt.png │ │ │ ├── ._basic_todolist_pen.png │ │ │ ├── ._basic_todolist_pencil.png │ │ │ ├── ._basic_trashcan.png │ │ │ ├── ._basic_trashcan_full.png │ │ │ ├── ._basic_trashcan_refresh.png │ │ │ ├── ._basic_trashcan_remove.png │ │ │ ├── ._basic_upload.png │ │ │ ├── ._basic_usb.png │ │ │ ├── ._basic_video.png │ │ │ ├── ._basic_watch.png │ │ │ ├── ._basic_webpage.png │ │ │ ├── ._basic_webpage_img_txt.png │ │ │ ├── ._basic_webpage_multiple.png │ │ │ ├── ._basic_webpage_txt.png │ │ │ └── ._basic_world.png │ │ ├── _SVG expanded │ │ │ ├── ._.DS_Store │ │ │ ├── ._basic_accelerator.svg │ │ │ ├── ._basic_alarm.svg │ │ │ ├── ._basic_anchor.svg │ │ │ ├── ._basic_anticlockwise.svg │ │ │ ├── ._basic_archive.svg │ │ │ ├── ._basic_archive_full.svg │ │ │ ├── ._basic_ban.svg │ │ │ ├── ._basic_battery_charge.svg │ │ │ ├── ._basic_battery_empty.svg │ │ │ ├── ._basic_battery_full.svg │ │ │ ├── ._basic_battery_half.svg │ │ │ ├── ._basic_bolt.svg │ │ │ ├── ._basic_book.svg │ │ │ ├── ._basic_book_pen.svg │ │ │ ├── ._basic_book_pencil.svg │ │ │ ├── ._basic_bookmark.svg │ │ │ ├── ._basic_calculator.svg │ │ │ ├── ._basic_calendar.svg │ │ │ ├── ._basic_cards_diamonds.svg │ │ │ ├── ._basic_cards_hearts.svg │ │ │ ├── ._basic_case.svg │ │ │ ├── ._basic_chronometer.svg │ │ │ ├── ._basic_clessidre.svg │ │ │ ├── ._basic_clock.svg │ │ │ ├── ._basic_clockwise.svg │ │ │ ├── ._basic_cloud.svg │ │ │ ├── ._basic_clubs.svg │ │ │ ├── ._basic_compass.svg │ │ │ ├── ._basic_cup.svg │ │ │ ├── ._basic_diamonds.svg │ │ │ ├── ._basic_display.svg │ │ │ ├── ._basic_download.svg │ │ │ ├── ._basic_exclamation.svg │ │ │ ├── ._basic_eye.svg │ │ │ ├── ._basic_eye_closed.svg │ │ │ ├── ._basic_female.svg │ │ │ ├── ._basic_flag1.svg │ │ │ ├── ._basic_flag2.svg │ │ │ ├── ._basic_floppydisk.svg │ │ │ ├── ._basic_folder.svg │ │ │ ├── ._basic_folder_multiple.svg │ │ │ ├── ._basic_gear.svg │ │ │ ├── ._basic_geolocalize-01.svg │ │ │ ├── ._basic_geolocalize-05.svg │ │ │ ├── ._basic_globe.svg │ │ │ ├── ._basic_gunsight.svg │ │ │ ├── ._basic_hammer.svg │ │ │ ├── ._basic_headset.svg │ │ │ ├── ._basic_heart.svg │ │ │ ├── ._basic_heart_broken.svg │ │ │ ├── ._basic_helm.svg │ │ │ ├── ._basic_home.svg │ │ │ ├── ._basic_info.svg │ │ │ ├── ._basic_ipod.svg │ │ │ ├── ._basic_joypad.svg │ │ │ ├── ._basic_key.svg │ │ │ ├── ._basic_keyboard.svg │ │ │ ├── ._basic_laptop.svg │ │ │ ├── ._basic_life_buoy.svg │ │ │ ├── ._basic_lightbulb.svg │ │ │ ├── ._basic_link.svg │ │ │ ├── ._basic_lock.svg │ │ │ ├── ._basic_lock_open.svg │ │ │ ├── ._basic_magic_mouse.svg │ │ │ ├── ._basic_magnifier.svg │ │ │ ├── ._basic_magnifier_minus.svg │ │ │ ├── ._basic_magnifier_plus.svg │ │ │ ├── ._basic_mail.svg │ │ │ ├── ._basic_mail_multiple.svg │ │ │ ├── ._basic_mail_open.svg │ │ │ ├── ._basic_mail_open_text.svg │ │ │ ├── ._basic_male.svg │ │ │ ├── ._basic_map.svg │ │ │ ├── ._basic_message.svg │ │ │ ├── ._basic_message_multiple.svg │ │ │ ├── ._basic_message_txt.svg │ │ │ ├── ._basic_mixer2.svg │ │ │ ├── ._basic_mouse.svg │ │ │ ├── ._basic_notebook.svg │ │ │ ├── ._basic_notebook_pen.svg │ │ │ ├── ._basic_notebook_pencil.svg │ │ │ ├── ._basic_paperplane.svg │ │ │ ├── ._basic_pencil_ruler.svg │ │ │ ├── ._basic_pencil_ruler_pen .svg │ │ │ ├── ._basic_photo.svg │ │ │ ├── ._basic_picture.svg │ │ │ ├── ._basic_picture_multiple.svg │ │ │ ├── ._basic_pin1.svg │ │ │ ├── ._basic_pin2.svg │ │ │ ├── ._basic_postcard.svg │ │ │ ├── ._basic_postcard_multiple.svg │ │ │ ├── ._basic_printer.svg │ │ │ ├── ._basic_question.svg │ │ │ ├── ._basic_rss.svg │ │ │ ├── ._basic_server.svg │ │ │ ├── ._basic_server2.svg │ │ │ ├── ._basic_server_cloud.svg │ │ │ ├── ._basic_server_download.svg │ │ │ ├── ._basic_server_upload.svg │ │ │ ├── ._basic_settings.svg │ │ │ ├── ._basic_share.svg │ │ │ ├── ._basic_sheet.svg │ │ │ ├── ._basic_sheet_multiple .svg │ │ │ ├── ._basic_sheet_pen.svg │ │ │ ├── ._basic_sheet_pencil.svg │ │ │ ├── ._basic_sheet_txt .svg │ │ │ ├── ._basic_signs.svg │ │ │ ├── ._basic_smartphone.svg │ │ │ ├── ._basic_spades.svg │ │ │ ├── ._basic_spread.svg │ │ │ ├── ._basic_spread_bookmark.svg │ │ │ ├── ._basic_spread_text.svg │ │ │ ├── ._basic_spread_text_bookmark.svg │ │ │ ├── ._basic_star.svg │ │ │ ├── ._basic_tablet.svg │ │ │ ├── ._basic_target.svg │ │ │ ├── ._basic_todo.svg │ │ │ ├── ._basic_todo_pen .svg │ │ │ ├── ._basic_todo_pencil.svg │ │ │ ├── ._basic_todo_txt.svg │ │ │ ├── ._basic_todolist_pen.svg │ │ │ ├── ._basic_todolist_pencil.svg │ │ │ ├── ._basic_trashcan.svg │ │ │ ├── ._basic_trashcan_full.svg │ │ │ ├── ._basic_trashcan_refresh.svg │ │ │ ├── ._basic_trashcan_remove.svg │ │ │ ├── ._basic_upload.svg │ │ │ ├── ._basic_usb.svg │ │ │ ├── ._basic_video.svg │ │ │ ├── ._basic_watch.svg │ │ │ ├── ._basic_webpage.svg │ │ │ ├── ._basic_webpage_img_txt.svg │ │ │ ├── ._basic_webpage_multiple.svg │ │ │ ├── ._basic_webpage_txt.svg │ │ │ └── ._basic_world.svg │ │ └── _SVG │ │ │ ├── ._.DS_Store │ │ │ ├── ._basic_accelerator.svg │ │ │ ├── ._basic_alarm.svg │ │ │ ├── ._basic_anchor.svg │ │ │ ├── ._basic_anticlockwise.svg │ │ │ ├── ._basic_archive.svg │ │ │ ├── ._basic_archive_full.svg │ │ │ ├── ._basic_ban.svg │ │ │ ├── ._basic_battery_charge.svg │ │ │ ├── ._basic_battery_empty.svg │ │ │ ├── ._basic_battery_full.svg │ │ │ ├── ._basic_battery_half.svg │ │ │ ├── ._basic_bolt.svg │ │ │ ├── ._basic_book.svg │ │ │ ├── ._basic_book_pen.svg │ │ │ ├── ._basic_book_pencil.svg │ │ │ ├── ._basic_bookmark.svg │ │ │ ├── ._basic_calculator.svg │ │ │ ├── ._basic_calendar.svg │ │ │ ├── ._basic_cards_diamonds.svg │ │ │ ├── ._basic_cards_hearts.svg │ │ │ ├── ._basic_case.svg │ │ │ ├── ._basic_chronometer.svg │ │ │ ├── ._basic_clessidre.svg │ │ │ ├── ._basic_clock.svg │ │ │ ├── ._basic_clockwise.svg │ │ │ ├── ._basic_cloud.svg │ │ │ ├── ._basic_clubs.svg │ │ │ ├── ._basic_compass.svg │ │ │ ├── ._basic_cup.svg │ │ │ ├── ._basic_diamonds.svg │ │ │ ├── ._basic_display.svg │ │ │ ├── ._basic_download.svg │ │ │ ├── ._basic_exclamation.svg │ │ │ ├── ._basic_eye.svg │ │ │ ├── ._basic_eye_closed.svg │ │ │ ├── ._basic_female.svg │ │ │ ├── ._basic_flag1.svg │ │ │ ├── ._basic_flag2.svg │ │ │ ├── ._basic_floppydisk.svg │ │ │ ├── ._basic_folder.svg │ │ │ ├── ._basic_folder_multiple.svg │ │ │ ├── ._basic_gear.svg │ │ │ ├── ._basic_geolocalize-01.svg │ │ │ ├── ._basic_geolocalize-05.svg │ │ │ ├── ._basic_globe.svg │ │ │ ├── ._basic_gunsight.svg │ │ │ ├── ._basic_hammer.svg │ │ │ ├── ._basic_headset.svg │ │ │ ├── ._basic_heart.svg │ │ │ ├── ._basic_heart_broken.svg │ │ │ ├── ._basic_helm.svg │ │ │ ├── ._basic_home.svg │ │ │ ├── ._basic_info.svg │ │ │ ├── ._basic_ipod.svg │ │ │ ├── ._basic_joypad.svg │ │ │ ├── ._basic_key.svg │ │ │ ├── ._basic_keyboard.svg │ │ │ ├── ._basic_laptop.svg │ │ │ ├── ._basic_life_buoy.svg │ │ │ ├── ._basic_lightbulb.svg │ │ │ ├── ._basic_link.svg │ │ │ ├── ._basic_lock.svg │ │ │ ├── ._basic_lock_open.svg │ │ │ ├── ._basic_magic_mouse.svg │ │ │ ├── ._basic_magnifier.svg │ │ │ ├── ._basic_magnifier_minus.svg │ │ │ ├── ._basic_magnifier_plus.svg │ │ │ ├── ._basic_mail.svg │ │ │ ├── ._basic_mail_multiple.svg │ │ │ ├── ._basic_mail_open.svg │ │ │ ├── ._basic_mail_open_text.svg │ │ │ ├── ._basic_male.svg │ │ │ ├── ._basic_map.svg │ │ │ ├── ._basic_message.svg │ │ │ ├── ._basic_message_multiple.svg │ │ │ ├── ._basic_message_txt.svg │ │ │ ├── ._basic_mixer2.svg │ │ │ ├── ._basic_mouse.svg │ │ │ ├── ._basic_notebook.svg │ │ │ ├── ._basic_notebook_pen.svg │ │ │ ├── ._basic_notebook_pencil.svg │ │ │ ├── ._basic_paperplane.svg │ │ │ ├── ._basic_pencil_ruler.svg │ │ │ ├── ._basic_pencil_ruler_pen .svg │ │ │ ├── ._basic_photo.svg │ │ │ ├── ._basic_picture.svg │ │ │ ├── ._basic_picture_multiple.svg │ │ │ ├── ._basic_pin1.svg │ │ │ ├── ._basic_pin2.svg │ │ │ ├── ._basic_postcard.svg │ │ │ ├── ._basic_postcard_multiple.svg │ │ │ ├── ._basic_printer.svg │ │ │ ├── ._basic_question.svg │ │ │ ├── ._basic_rss.svg │ │ │ ├── ._basic_server.svg │ │ │ ├── ._basic_server2.svg │ │ │ ├── ._basic_server_cloud.svg │ │ │ ├── ._basic_server_download.svg │ │ │ ├── ._basic_server_upload.svg │ │ │ ├── ._basic_settings.svg │ │ │ ├── ._basic_share.svg │ │ │ ├── ._basic_sheet.svg │ │ │ ├── ._basic_sheet_multiple .svg │ │ │ ├── ._basic_sheet_pen.svg │ │ │ ├── ._basic_sheet_pencil.svg │ │ │ ├── ._basic_sheet_txt .svg │ │ │ ├── ._basic_signs.svg │ │ │ ├── ._basic_smartphone.svg │ │ │ ├── ._basic_spades.svg │ │ │ ├── ._basic_spread.svg │ │ │ ├── ._basic_spread_bookmark.svg │ │ │ ├── ._basic_spread_text.svg │ │ │ ├── ._basic_spread_text_bookmark.svg │ │ │ ├── ._basic_star.svg │ │ │ ├── ._basic_tablet.svg │ │ │ ├── ._basic_target.svg │ │ │ ├── ._basic_todo.svg │ │ │ ├── ._basic_todo_pen .svg │ │ │ ├── ._basic_todo_pencil.svg │ │ │ ├── ._basic_todo_txt.svg │ │ │ ├── ._basic_todolist_pen.svg │ │ │ ├── ._basic_todolist_pencil.svg │ │ │ ├── ._basic_trashcan.svg │ │ │ ├── ._basic_trashcan_full.svg │ │ │ ├── ._basic_trashcan_refresh.svg │ │ │ ├── ._basic_trashcan_remove.svg │ │ │ ├── ._basic_upload.svg │ │ │ ├── ._basic_usb.svg │ │ │ ├── ._basic_video.svg │ │ │ ├── ._basic_watch.svg │ │ │ ├── ._basic_webpage.svg │ │ │ ├── ._basic_webpage_img_txt.svg │ │ │ ├── ._basic_webpage_multiple.svg │ │ │ ├── ._basic_webpage_txt.svg │ │ │ └── ._basic_world.svg │ ├── linea_basic_1.0.jpg │ └── read_me.txt ├── linea_music_1.0 │ ├── _ICONFONT │ │ ├── .DS_Store │ │ ├── fonts │ │ │ ├── .DS_Store │ │ │ ├── linea-music-10.eot │ │ │ ├── linea-music-10.svg │ │ │ ├── linea-music-10.ttf │ │ │ └── linea-music-10.woff │ │ ├── icons-reference.html │ │ └── styles.css │ ├── _PNG64 │ │ ├── .DS_Store │ │ ├── music_beginning_button.png │ │ ├── music_bell.png │ │ ├── music_cd.png │ │ ├── music_diapason.png │ │ ├── music_eject_button.png │ │ ├── music_end_button.png │ │ ├── music_fastforward_button.png │ │ ├── music_headphones.png │ │ ├── music_ipod.png │ │ ├── music_loudspeaker.png │ │ ├── music_microphone.png │ │ ├── music_microphone_old.png │ │ ├── music_mixer.png │ │ ├── music_mute.png │ │ ├── music_note_multiple.png │ │ ├── music_note_single.png │ │ ├── music_pause_button.png │ │ ├── music_play_button.png │ │ ├── music_playlist.png │ │ ├── music_radio_ghettoblaster.png │ │ ├── music_radio_portable.png │ │ ├── music_record.png │ │ ├── music_recordplayer.png │ │ ├── music_repeat_button.png │ │ ├── music_rewind_button.png │ │ ├── music_shuffle_button.png │ │ ├── music_stop_button.png │ │ ├── music_tape.png │ │ ├── music_volume_down.png │ │ └── music_volume_up.png │ ├── _SVG expanded │ │ ├── .DS_Store │ │ ├── music_beginning_button.svg │ │ ├── music_bell.svg │ │ ├── music_cd.svg │ │ ├── music_diapason.svg │ │ ├── music_eject_button.svg │ │ ├── music_end_button.svg │ │ ├── music_fastforward_button.svg │ │ ├── music_headphones.svg │ │ ├── music_ipod.svg │ │ ├── music_loudspeaker.svg │ │ ├── music_microphone.svg │ │ ├── music_microphone_old.svg │ │ ├── music_mixer.svg │ │ ├── music_mute.svg │ │ ├── music_note_multiple.svg │ │ ├── music_note_single.svg │ │ ├── music_pause_button.svg │ │ ├── music_play_button.svg │ │ ├── music_playlist.svg │ │ ├── music_radio_ghettoblaster.svg │ │ ├── music_radio_portable.svg │ │ ├── music_record.svg │ │ ├── music_recordplayer.svg │ │ ├── music_repeat_button.svg │ │ ├── music_rewind_button.svg │ │ ├── music_shuffle_button.svg │ │ ├── music_stop_button.svg │ │ ├── music_tape.svg │ │ ├── music_volume_down.svg │ │ └── music_volume_up.svg │ ├── _SVG │ │ ├── .DS_Store │ │ ├── music_beginning_button.svg │ │ ├── music_bell.svg │ │ ├── music_cd.svg │ │ ├── music_diapason.svg │ │ ├── music_eject_button.svg │ │ ├── music_end_button.svg │ │ ├── music_fastforward_button.svg │ │ ├── music_headphones.svg │ │ ├── music_ipod.svg │ │ ├── music_loudspeaker.svg │ │ ├── music_microphone.svg │ │ ├── music_microphone_old.svg │ │ ├── music_mixer.svg │ │ ├── music_mute.svg │ │ ├── music_note_multiple.svg │ │ ├── music_note_single.svg │ │ ├── music_pause_button.svg │ │ ├── music_play_button.svg │ │ ├── music_playlist.svg │ │ ├── music_radio_ghettoblaster.svg │ │ ├── music_radio_portable.svg │ │ ├── music_record.svg │ │ ├── music_recordplayer.svg │ │ ├── music_repeat_button.svg │ │ ├── music_rewind_button.svg │ │ ├── music_shuffle_button.svg │ │ ├── music_stop_button.svg │ │ ├── music_tape.svg │ │ ├── music_volume_down.svg │ │ └── music_volume_up.svg │ ├── __MACOSX │ │ ├── ._linea_music_1.0.jpg │ │ ├── ._read_me.txt │ │ ├── _ICONFONT │ │ │ ├── ._.DS_Store │ │ │ ├── ._fonts │ │ │ ├── ._icons-reference.html │ │ │ ├── ._styles.css │ │ │ └── fonts │ │ │ │ ├── ._.DS_Store │ │ │ │ ├── ._linea-music-10.eot │ │ │ │ ├── ._linea-music-10.svg │ │ │ │ ├── ._linea-music-10.ttf │ │ │ │ └── ._linea-music-10.woff │ │ ├── _PNG64 │ │ │ ├── ._.DS_Store │ │ │ ├── ._music_beginning_button.png │ │ │ ├── ._music_bell.png │ │ │ ├── ._music_cd.png │ │ │ ├── ._music_diapason.png │ │ │ ├── ._music_eject_button.png │ │ │ ├── ._music_end_button.png │ │ │ ├── ._music_fastforward_button.png │ │ │ ├── ._music_headphones.png │ │ │ ├── ._music_ipod.png │ │ │ ├── ._music_loudspeaker.png │ │ │ ├── ._music_microphone.png │ │ │ ├── ._music_microphone_old.png │ │ │ ├── ._music_mixer.png │ │ │ ├── ._music_mute.png │ │ │ ├── ._music_note_multiple.png │ │ │ ├── ._music_note_single.png │ │ │ ├── ._music_pause_button.png │ │ │ ├── ._music_play_button.png │ │ │ ├── ._music_playlist.png │ │ │ ├── ._music_radio_ghettoblaster.png │ │ │ ├── ._music_radio_portable.png │ │ │ ├── ._music_record.png │ │ │ ├── ._music_recordplayer.png │ │ │ ├── ._music_repeat_button.png │ │ │ ├── ._music_rewind_button.png │ │ │ ├── ._music_shuffle_button.png │ │ │ ├── ._music_stop_button.png │ │ │ ├── ._music_tape.png │ │ │ ├── ._music_volume_down.png │ │ │ └── ._music_volume_up.png │ │ ├── _SVG expanded │ │ │ ├── ._.DS_Store │ │ │ ├── ._music_beginning_button.svg │ │ │ ├── ._music_bell.svg │ │ │ ├── ._music_cd.svg │ │ │ ├── ._music_diapason.svg │ │ │ ├── ._music_eject_button.svg │ │ │ ├── ._music_end_button.svg │ │ │ ├── ._music_fastforward_button.svg │ │ │ ├── ._music_headphones.svg │ │ │ ├── ._music_ipod.svg │ │ │ ├── ._music_loudspeaker.svg │ │ │ ├── ._music_microphone.svg │ │ │ ├── ._music_microphone_old.svg │ │ │ ├── ._music_mixer.svg │ │ │ ├── ._music_mute.svg │ │ │ ├── ._music_note_multiple.svg │ │ │ ├── ._music_note_single.svg │ │ │ ├── ._music_pause_button.svg │ │ │ ├── ._music_play_button.svg │ │ │ ├── ._music_playlist.svg │ │ │ ├── ._music_radio_ghettoblaster.svg │ │ │ ├── ._music_radio_portable.svg │ │ │ ├── ._music_record.svg │ │ │ ├── ._music_recordplayer.svg │ │ │ ├── ._music_repeat_button.svg │ │ │ ├── ._music_rewind_button.svg │ │ │ ├── ._music_shuffle_button.svg │ │ │ ├── ._music_stop_button.svg │ │ │ ├── ._music_tape.svg │ │ │ ├── ._music_volume_down.svg │ │ │ └── ._music_volume_up.svg │ │ └── _SVG │ │ │ ├── ._.DS_Store │ │ │ ├── ._music_beginning_button.svg │ │ │ ├── ._music_bell.svg │ │ │ ├── ._music_cd.svg │ │ │ ├── ._music_diapason.svg │ │ │ ├── ._music_eject_button.svg │ │ │ ├── ._music_end_button.svg │ │ │ ├── ._music_fastforward_button.svg │ │ │ ├── ._music_headphones.svg │ │ │ ├── ._music_ipod.svg │ │ │ ├── ._music_loudspeaker.svg │ │ │ ├── ._music_microphone.svg │ │ │ ├── ._music_microphone_old.svg │ │ │ ├── ._music_mixer.svg │ │ │ ├── ._music_mute.svg │ │ │ ├── ._music_note_multiple.svg │ │ │ ├── ._music_note_single.svg │ │ │ ├── ._music_pause_button.svg │ │ │ ├── ._music_play_button.svg │ │ │ ├── ._music_playlist.svg │ │ │ ├── ._music_radio_ghettoblaster.svg │ │ │ ├── ._music_radio_portable.svg │ │ │ ├── ._music_record.svg │ │ │ ├── ._music_recordplayer.svg │ │ │ ├── ._music_repeat_button.svg │ │ │ ├── ._music_rewind_button.svg │ │ │ ├── ._music_shuffle_button.svg │ │ │ ├── ._music_stop_button.svg │ │ │ ├── ._music_tape.svg │ │ │ ├── ._music_volume_down.svg │ │ │ └── ._music_volume_up.svg │ ├── linea_music_1.0.jpg │ └── read_me.txt └── linea_weather_1.0 │ ├── _ICONFONT │ ├── .DS_Store │ ├── fonts │ │ ├── linea-weather-10.eot │ │ ├── linea-weather-10.svg │ │ ├── linea-weather-10.ttf │ │ └── linea-weather-10.woff │ ├── icons-reference.html │ └── styles.css │ ├── _PNG64 │ ├── .DS_Store │ ├── weather_aquarius.png │ ├── weather_aries.png │ ├── weather_cancer.png │ ├── weather_capricorn.png │ ├── weather_cloud.png │ ├── weather_cloud_drop.png │ ├── weather_cloud_lightning.png │ ├── weather_cloud_snowflake.png │ ├── weather_downpour_fullmoon.png │ ├── weather_downpour_halfmoon.png │ ├── weather_downpour_sun.png │ ├── weather_drop.png │ ├── weather_first_quarter .png │ ├── weather_fog.png │ ├── weather_fog_fullmoon.png │ ├── weather_fog_halfmoon.png │ ├── weather_fog_sun.png │ ├── weather_fullmoon.png │ ├── weather_gemini.png │ ├── weather_hail.png │ ├── weather_hail_fullmoon.png │ ├── weather_hail_halfmoon.png │ ├── weather_hail_sun.png │ ├── weather_last_quarter.png │ ├── weather_leo.png │ ├── weather_libra.png │ ├── weather_lightning.png │ ├── weather_mistyrain.png │ ├── weather_mistyrain_fullmoon.png │ ├── weather_mistyrain_halfmoon.png │ ├── weather_mistyrain_sun.png │ ├── weather_moon.png │ ├── weather_moondown_full.png │ ├── weather_moondown_half.png │ ├── weather_moonset_full.png │ ├── weather_moonset_half.png │ ├── weather_move2.png │ ├── weather_newmoon.png │ ├── weather_pisces.png │ ├── weather_rain.png │ ├── weather_rain_fullmoon.png │ ├── weather_rain_halfmoon.png │ ├── weather_rain_sun.png │ ├── weather_sagittarius.png │ ├── weather_scorpio.png │ ├── weather_snow.png │ ├── weather_snow_fullmoon.png │ ├── weather_snow_halfmoon.png │ ├── weather_snow_sun.png │ ├── weather_snowflake.png │ ├── weather_star.png │ ├── weather_storm-11.png │ ├── weather_storm-32.png │ ├── weather_storm_fullmoon.png │ ├── weather_storm_halfmoon.png │ ├── weather_storm_sun.png │ ├── weather_sun.png │ ├── weather_sundown.png │ ├── weather_sunset.png │ ├── weather_taurus.png │ ├── weather_tempest.png │ ├── weather_tempest_fullmoon.png │ ├── weather_tempest_halfmoon.png │ ├── weather_tempest_sun.png │ ├── weather_variable_fullmoon.png │ ├── weather_variable_halfmoon.png │ ├── weather_variable_sun.png │ ├── weather_virgo.png │ ├── weather_waning_cresent.png │ ├── weather_waning_gibbous.png │ ├── weather_waxing_cresent.png │ ├── weather_waxing_gibbous.png │ ├── weather_wind.png │ ├── weather_wind_E.png │ ├── weather_wind_N.png │ ├── weather_wind_NE.png │ ├── weather_wind_NW.png │ ├── weather_wind_S.png │ ├── weather_wind_SE.png │ ├── weather_wind_SW.png │ ├── weather_wind_W.png │ ├── weather_wind_fullmoon.png │ ├── weather_wind_halfmoon.png │ ├── weather_wind_sun.png │ └── weather_windgust.png │ ├── _SVG expanded │ ├── .DS_Store │ ├── weather_aquarius.svg │ ├── weather_aries.svg │ ├── weather_cancer.svg │ ├── weather_capricorn.svg │ ├── weather_cloud.svg │ ├── weather_cloud_drop.svg │ ├── weather_cloud_lightning.svg │ ├── weather_cloud_snowflake.svg │ ├── weather_downpour_fullmoon.svg │ ├── weather_downpour_halfmoon.svg │ ├── weather_downpour_sun.svg │ ├── weather_drop.svg │ ├── weather_first_quarter .svg │ ├── weather_fog.svg │ ├── weather_fog_fullmoon.svg │ ├── weather_fog_halfmoon.svg │ ├── weather_fog_sun.svg │ ├── weather_fullmoon.svg │ ├── weather_gemini.svg │ ├── weather_hail.svg │ ├── weather_hail_fullmoon.svg │ ├── weather_hail_halfmoon.svg │ ├── weather_hail_sun.svg │ ├── weather_last_quarter.svg │ ├── weather_leo.svg │ ├── weather_libra.svg │ ├── weather_lightning.svg │ ├── weather_mistyrain.svg │ ├── weather_mistyrain_fullmoon.svg │ ├── weather_mistyrain_halfmoon.svg │ ├── weather_mistyrain_sun.svg │ ├── weather_moon.svg │ ├── weather_moondown_full.svg │ ├── weather_moondown_half.svg │ ├── weather_moonset_full.svg │ ├── weather_moonset_half.svg │ ├── weather_move2.svg │ ├── weather_newmoon.svg │ ├── weather_pisces.svg │ ├── weather_rain.svg │ ├── weather_rain_fullmoon.svg │ ├── weather_rain_halfmoon.svg │ ├── weather_rain_sun.svg │ ├── weather_sagittarius.svg │ ├── weather_scorpio.svg │ ├── weather_snow.svg │ ├── weather_snow_fullmoon.svg │ ├── weather_snow_halfmoon.svg │ ├── weather_snow_sun.svg │ ├── weather_snowflake.svg │ ├── weather_star.svg │ ├── weather_storm-11.svg │ ├── weather_storm-32.svg │ ├── weather_storm_fullmoon.svg │ ├── weather_storm_halfmoon.svg │ ├── weather_storm_sun.svg │ ├── weather_sun.svg │ ├── weather_sundown.svg │ ├── weather_sunset.svg │ ├── weather_taurus.svg │ ├── weather_tempest.svg │ ├── weather_tempest_fullmoon.svg │ ├── weather_tempest_halfmoon.svg │ ├── weather_tempest_sun.svg │ ├── weather_variable_fullmoon.svg │ ├── weather_variable_halfmoon.svg │ ├── weather_variable_sun.svg │ ├── weather_virgo.svg │ ├── weather_waning_cresent.svg │ ├── weather_waning_gibbous.svg │ ├── weather_waxing_cresent.svg │ ├── weather_waxing_gibbous.svg │ ├── weather_wind.svg │ ├── weather_wind_E.svg │ ├── weather_wind_N.svg │ ├── weather_wind_NE.svg │ ├── weather_wind_NW.svg │ ├── weather_wind_S.svg │ ├── weather_wind_SE.svg │ ├── weather_wind_SW.svg │ ├── weather_wind_W.svg │ ├── weather_wind_fullmoon.svg │ ├── weather_wind_halfmoon.svg │ ├── weather_wind_sun.svg │ └── weather_windgust.svg │ ├── _SVG │ ├── .DS_Store │ ├── weather_aquarius.svg │ ├── weather_aries.svg │ ├── weather_cancer.svg │ ├── weather_capricorn.svg │ ├── weather_cloud.svg │ ├── weather_cloud_drop.svg │ ├── weather_cloud_lightning.svg │ ├── weather_cloud_snowflake.svg │ ├── weather_downpour_fullmoon.svg │ ├── weather_downpour_halfmoon.svg │ ├── weather_downpour_sun.svg │ ├── weather_drop.svg │ ├── weather_first_quarter .svg │ ├── weather_fog.svg │ ├── weather_fog_fullmoon.svg │ ├── weather_fog_halfmoon.svg │ ├── weather_fog_sun.svg │ ├── weather_fullmoon.svg │ ├── weather_gemini.svg │ ├── weather_hail.svg │ ├── weather_hail_fullmoon.svg │ ├── weather_hail_halfmoon.svg │ ├── weather_hail_sun.svg │ ├── weather_last_quarter.svg │ ├── weather_leo.svg │ ├── weather_libra.svg │ ├── weather_lightning.svg │ ├── weather_mistyrain.svg │ ├── weather_mistyrain_fullmoon.svg │ ├── weather_mistyrain_halfmoon.svg │ ├── weather_mistyrain_sun.svg │ ├── weather_moon.svg │ ├── weather_moondown_full.svg │ ├── weather_moondown_half.svg │ ├── weather_moonset_full.svg │ ├── weather_moonset_half.svg │ ├── weather_move2.svg │ ├── weather_newmoon.svg │ ├── weather_pisces.svg │ ├── weather_rain.svg │ ├── weather_rain_fullmoon.svg │ ├── weather_rain_halfmoon.svg │ ├── weather_rain_sun.svg │ ├── weather_sagittarius.svg │ ├── weather_scorpio.svg │ ├── weather_snow.svg │ ├── weather_snow_fullmoon.svg │ ├── weather_snow_halfmoon.svg │ ├── weather_snow_sun.svg │ ├── weather_snowflake.svg │ ├── weather_star.svg │ ├── weather_storm-11.svg │ ├── weather_storm-32.svg │ ├── weather_storm_fullmoon.svg │ ├── weather_storm_halfmoon.svg │ ├── weather_storm_sun.svg │ ├── weather_sun.svg │ ├── weather_sundown.svg │ ├── weather_sunset.svg │ ├── weather_taurus.svg │ ├── weather_tempest.svg │ ├── weather_tempest_fullmoon.svg │ ├── weather_tempest_halfmoon.svg │ ├── weather_tempest_sun.svg │ ├── weather_variable_fullmoon.svg │ ├── weather_variable_halfmoon.svg │ ├── weather_variable_sun.svg │ ├── weather_virgo.svg │ ├── weather_waning_cresent.svg │ ├── weather_waning_gibbous.svg │ ├── weather_waxing_cresent.svg │ ├── weather_waxing_gibbous.svg │ ├── weather_wind.svg │ ├── weather_wind_E.svg │ ├── weather_wind_N.svg │ ├── weather_wind_NE.svg │ ├── weather_wind_NW.svg │ ├── weather_wind_S.svg │ ├── weather_wind_SE.svg │ ├── weather_wind_SW.svg │ ├── weather_wind_W.svg │ ├── weather_wind_fullmoon.svg │ ├── weather_wind_halfmoon.svg │ ├── weather_wind_sun.svg │ └── weather_windgust.svg │ ├── __MACOSX │ ├── ._linea_weather_1.0.jpg │ ├── ._read_me.txt │ ├── _ICONFONT │ │ ├── ._.DS_Store │ │ ├── ._fonts │ │ ├── ._icons-reference.html │ │ ├── ._styles.css │ │ └── fonts │ │ │ ├── ._linea-weather-10.eot │ │ │ ├── ._linea-weather-10.svg │ │ │ ├── ._linea-weather-10.ttf │ │ │ └── ._linea-weather-10.woff │ ├── _PNG64 │ │ ├── ._.DS_Store │ │ ├── ._weather_aquarius.png │ │ ├── ._weather_aries.png │ │ ├── ._weather_cancer.png │ │ ├── ._weather_capricorn.png │ │ ├── ._weather_cloud.png │ │ ├── ._weather_cloud_drop.png │ │ ├── ._weather_cloud_lightning.png │ │ ├── ._weather_cloud_snowflake.png │ │ ├── ._weather_downpour_fullmoon.png │ │ ├── ._weather_downpour_halfmoon.png │ │ ├── ._weather_downpour_sun.png │ │ ├── ._weather_drop.png │ │ ├── ._weather_first_quarter .png │ │ ├── ._weather_fog.png │ │ ├── ._weather_fog_fullmoon.png │ │ ├── ._weather_fog_halfmoon.png │ │ ├── ._weather_fog_sun.png │ │ ├── ._weather_fullmoon.png │ │ ├── ._weather_gemini.png │ │ ├── ._weather_hail.png │ │ ├── ._weather_hail_fullmoon.png │ │ ├── ._weather_hail_halfmoon.png │ │ ├── ._weather_hail_sun.png │ │ ├── ._weather_last_quarter.png │ │ ├── ._weather_leo.png │ │ ├── ._weather_libra.png │ │ ├── ._weather_lightning.png │ │ ├── ._weather_mistyrain.png │ │ ├── ._weather_mistyrain_fullmoon.png │ │ ├── ._weather_mistyrain_halfmoon.png │ │ ├── ._weather_mistyrain_sun.png │ │ ├── ._weather_moon.png │ │ ├── ._weather_moondown_full.png │ │ ├── ._weather_moondown_half.png │ │ ├── ._weather_moonset_full.png │ │ ├── ._weather_moonset_half.png │ │ ├── ._weather_move2.png │ │ ├── ._weather_newmoon.png │ │ ├── ._weather_pisces.png │ │ ├── ._weather_rain.png │ │ ├── ._weather_rain_fullmoon.png │ │ ├── ._weather_rain_halfmoon.png │ │ ├── ._weather_rain_sun.png │ │ ├── ._weather_sagittarius.png │ │ ├── ._weather_scorpio.png │ │ ├── ._weather_snow.png │ │ ├── ._weather_snow_fullmoon.png │ │ ├── ._weather_snow_halfmoon.png │ │ ├── ._weather_snow_sun.png │ │ ├── ._weather_snowflake.png │ │ ├── ._weather_star.png │ │ ├── ._weather_storm-11.png │ │ ├── ._weather_storm-32.png │ │ ├── ._weather_storm_fullmoon.png │ │ ├── ._weather_storm_halfmoon.png │ │ ├── ._weather_storm_sun.png │ │ ├── ._weather_sun.png │ │ ├── ._weather_sundown.png │ │ ├── ._weather_sunset.png │ │ ├── ._weather_taurus.png │ │ ├── ._weather_tempest.png │ │ ├── ._weather_tempest_fullmoon.png │ │ ├── ._weather_tempest_halfmoon.png │ │ ├── ._weather_tempest_sun.png │ │ ├── ._weather_variable_fullmoon.png │ │ ├── ._weather_variable_halfmoon.png │ │ ├── ._weather_variable_sun.png │ │ ├── ._weather_virgo.png │ │ ├── ._weather_waning_cresent.png │ │ ├── ._weather_waning_gibbous.png │ │ ├── ._weather_waxing_cresent.png │ │ ├── ._weather_waxing_gibbous.png │ │ ├── ._weather_wind.png │ │ ├── ._weather_wind_E.png │ │ ├── ._weather_wind_N.png │ │ ├── ._weather_wind_NE.png │ │ ├── ._weather_wind_NW.png │ │ ├── ._weather_wind_S.png │ │ ├── ._weather_wind_SE.png │ │ ├── ._weather_wind_SW.png │ │ ├── ._weather_wind_W.png │ │ ├── ._weather_wind_fullmoon.png │ │ ├── ._weather_wind_halfmoon.png │ │ ├── ._weather_wind_sun.png │ │ └── ._weather_windgust.png │ ├── _SVG expanded │ │ ├── ._.DS_Store │ │ ├── ._weather_aquarius.svg │ │ ├── ._weather_aries.svg │ │ ├── ._weather_cancer.svg │ │ ├── ._weather_capricorn.svg │ │ ├── ._weather_cloud.svg │ │ ├── ._weather_cloud_drop.svg │ │ ├── ._weather_cloud_lightning.svg │ │ ├── ._weather_cloud_snowflake.svg │ │ ├── ._weather_downpour_fullmoon.svg │ │ ├── ._weather_downpour_halfmoon.svg │ │ ├── ._weather_downpour_sun.svg │ │ ├── ._weather_drop.svg │ │ ├── ._weather_first_quarter .svg │ │ ├── ._weather_fog.svg │ │ ├── ._weather_fog_fullmoon.svg │ │ ├── ._weather_fog_halfmoon.svg │ │ ├── ._weather_fog_sun.svg │ │ ├── ._weather_fullmoon.svg │ │ ├── ._weather_gemini.svg │ │ ├── ._weather_hail.svg │ │ ├── ._weather_hail_fullmoon.svg │ │ ├── ._weather_hail_halfmoon.svg │ │ ├── ._weather_hail_sun.svg │ │ ├── ._weather_last_quarter.svg │ │ ├── ._weather_leo.svg │ │ ├── ._weather_libra.svg │ │ ├── ._weather_lightning.svg │ │ ├── ._weather_mistyrain.svg │ │ ├── ._weather_mistyrain_fullmoon.svg │ │ ├── ._weather_mistyrain_halfmoon.svg │ │ ├── ._weather_mistyrain_sun.svg │ │ ├── ._weather_moon.svg │ │ ├── ._weather_moondown_full.svg │ │ ├── ._weather_moondown_half.svg │ │ ├── ._weather_moonset_full.svg │ │ ├── ._weather_moonset_half.svg │ │ ├── ._weather_move2.svg │ │ ├── ._weather_newmoon.svg │ │ ├── ._weather_pisces.svg │ │ ├── ._weather_rain.svg │ │ ├── ._weather_rain_fullmoon.svg │ │ ├── ._weather_rain_halfmoon.svg │ │ ├── ._weather_rain_sun.svg │ │ ├── ._weather_sagittarius.svg │ │ ├── ._weather_scorpio.svg │ │ ├── ._weather_snow.svg │ │ ├── ._weather_snow_fullmoon.svg │ │ ├── ._weather_snow_halfmoon.svg │ │ ├── ._weather_snow_sun.svg │ │ ├── ._weather_snowflake.svg │ │ ├── ._weather_star.svg │ │ ├── ._weather_storm-11.svg │ │ ├── ._weather_storm-32.svg │ │ ├── ._weather_storm_fullmoon.svg │ │ ├── ._weather_storm_halfmoon.svg │ │ ├── ._weather_storm_sun.svg │ │ ├── ._weather_sun.svg │ │ ├── ._weather_sundown.svg │ │ ├── ._weather_sunset.svg │ │ ├── ._weather_taurus.svg │ │ ├── ._weather_tempest.svg │ │ ├── ._weather_tempest_fullmoon.svg │ │ ├── ._weather_tempest_halfmoon.svg │ │ ├── ._weather_tempest_sun.svg │ │ ├── ._weather_variable_fullmoon.svg │ │ ├── ._weather_variable_halfmoon.svg │ │ ├── ._weather_variable_sun.svg │ │ ├── ._weather_virgo.svg │ │ ├── ._weather_waning_cresent.svg │ │ ├── ._weather_waning_gibbous.svg │ │ ├── ._weather_waxing_cresent.svg │ │ ├── ._weather_waxing_gibbous.svg │ │ ├── ._weather_wind.svg │ │ ├── ._weather_wind_E.svg │ │ ├── ._weather_wind_N.svg │ │ ├── ._weather_wind_NE.svg │ │ ├── ._weather_wind_NW.svg │ │ ├── ._weather_wind_S.svg │ │ ├── ._weather_wind_SE.svg │ │ ├── ._weather_wind_SW.svg │ │ ├── ._weather_wind_W.svg │ │ ├── ._weather_wind_fullmoon.svg │ │ ├── ._weather_wind_halfmoon.svg │ │ ├── ._weather_wind_sun.svg │ │ └── ._weather_windgust.svg │ └── _SVG │ │ ├── ._.DS_Store │ │ ├── ._weather_aquarius.svg │ │ ├── ._weather_aries.svg │ │ ├── ._weather_cancer.svg │ │ ├── ._weather_capricorn.svg │ │ ├── ._weather_cloud.svg │ │ ├── ._weather_cloud_drop.svg │ │ ├── ._weather_cloud_lightning.svg │ │ ├── ._weather_cloud_snowflake.svg │ │ ├── ._weather_downpour_fullmoon.svg │ │ ├── ._weather_downpour_halfmoon.svg │ │ ├── ._weather_downpour_sun.svg │ │ ├── ._weather_drop.svg │ │ ├── ._weather_first_quarter .svg │ │ ├── ._weather_fog.svg │ │ ├── ._weather_fog_fullmoon.svg │ │ ├── ._weather_fog_halfmoon.svg │ │ ├── ._weather_fog_sun.svg │ │ ├── ._weather_fullmoon.svg │ │ ├── ._weather_gemini.svg │ │ ├── ._weather_hail.svg │ │ ├── ._weather_hail_fullmoon.svg │ │ ├── ._weather_hail_halfmoon.svg │ │ ├── ._weather_hail_sun.svg │ │ ├── ._weather_last_quarter.svg │ │ ├── ._weather_leo.svg │ │ ├── ._weather_libra.svg │ │ ├── ._weather_lightning.svg │ │ ├── ._weather_mistyrain.svg │ │ ├── ._weather_mistyrain_fullmoon.svg │ │ ├── ._weather_mistyrain_halfmoon.svg │ │ ├── ._weather_mistyrain_sun.svg │ │ ├── ._weather_moon.svg │ │ ├── ._weather_moondown_full.svg │ │ ├── ._weather_moondown_half.svg │ │ ├── ._weather_moonset_full.svg │ │ ├── ._weather_moonset_half.svg │ │ ├── ._weather_move2.svg │ │ ├── ._weather_newmoon.svg │ │ ├── ._weather_pisces.svg │ │ ├── ._weather_rain.svg │ │ ├── ._weather_rain_fullmoon.svg │ │ ├── ._weather_rain_halfmoon.svg │ │ ├── ._weather_rain_sun.svg │ │ ├── ._weather_sagittarius.svg │ │ ├── ._weather_scorpio.svg │ │ ├── ._weather_snow.svg │ │ ├── ._weather_snow_fullmoon.svg │ │ ├── ._weather_snow_halfmoon.svg │ │ ├── ._weather_snow_sun.svg │ │ ├── ._weather_snowflake.svg │ │ ├── ._weather_star.svg │ │ ├── ._weather_storm-11.svg │ │ ├── ._weather_storm-32.svg │ │ ├── ._weather_storm_fullmoon.svg │ │ ├── ._weather_storm_halfmoon.svg │ │ ├── ._weather_storm_sun.svg │ │ ├── ._weather_sun.svg │ │ ├── ._weather_sundown.svg │ │ ├── ._weather_sunset.svg │ │ ├── ._weather_taurus.svg │ │ ├── ._weather_tempest.svg │ │ ├── ._weather_tempest_fullmoon.svg │ │ ├── ._weather_tempest_halfmoon.svg │ │ ├── ._weather_tempest_sun.svg │ │ ├── ._weather_variable_fullmoon.svg │ │ ├── ._weather_variable_halfmoon.svg │ │ ├── ._weather_variable_sun.svg │ │ ├── ._weather_virgo.svg │ │ ├── ._weather_waning_cresent.svg │ │ ├── ._weather_waning_gibbous.svg │ │ ├── ._weather_waxing_cresent.svg │ │ ├── ._weather_waxing_gibbous.svg │ │ ├── ._weather_wind.svg │ │ ├── ._weather_wind_E.svg │ │ ├── ._weather_wind_N.svg │ │ ├── ._weather_wind_NE.svg │ │ ├── ._weather_wind_NW.svg │ │ ├── ._weather_wind_S.svg │ │ ├── ._weather_wind_SE.svg │ │ ├── ._weather_wind_SW.svg │ │ ├── ._weather_wind_W.svg │ │ ├── ._weather_wind_fullmoon.svg │ │ ├── ._weather_wind_halfmoon.svg │ │ ├── ._weather_wind_sun.svg │ │ └── ._weather_windgust.svg │ ├── linea_weather_1.0.jpg │ └── read_me.txt ├── joke-generator ├── README.md ├── index.html ├── index.js ├── res │ ├── demo.gif │ └── favicon.ico └── styles.css ├── money-manager ├── .gitignore ├── README.md ├── package.json ├── project-image.jpg ├── public │ ├── favicon.ico │ ├── index.html │ ├── logo192.png │ ├── logo512.png │ ├── manifest.json │ └── robots.txt ├── src │ ├── App.css │ ├── App.js │ ├── components │ │ ├── MoneyManager │ │ │ ├── MoneyManager.css │ │ │ └── MoneyManager.js │ │ ├── RegisterItem │ │ │ ├── RegisterItem.css │ │ │ └── RegisterItem.js │ │ └── TabItem │ │ │ ├── TabItem.css │ │ │ └── TabItem.js │ ├── index.css │ └── index.js └── yarn.lock ├── ping-pong game ├── game.gif ├── index.html ├── index.js ├── readme.md └── style.css └── romanNumeralConverter_h2o-Noob ├── README.md ├── index.html ├── romCon.css ├── script.js └── style.css /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /2048Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/2048Game/README.md -------------------------------------------------------------------------------- /2048Game/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/2048Game/favicon.png -------------------------------------------------------------------------------- /2048Game/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/2048Game/image.png -------------------------------------------------------------------------------- /2048Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/2048Game/index.html -------------------------------------------------------------------------------- /2048Game/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/2048Game/index.js -------------------------------------------------------------------------------- /2048Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/2048Game/style.css -------------------------------------------------------------------------------- /Animated_Login_UI/images/Forgot.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Animated_Login_UI/images/Forgot.svg -------------------------------------------------------------------------------- /Animated_Login_UI/images/Login.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Animated_Login_UI/images/Login.svg -------------------------------------------------------------------------------- /Animated_Login_UI/images/Register.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Animated_Login_UI/images/Register.svg -------------------------------------------------------------------------------- /Animated_Login_UI/images/page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Animated_Login_UI/images/page.gif -------------------------------------------------------------------------------- /Animated_Login_UI/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Animated_Login_UI/main.css -------------------------------------------------------------------------------- /Animated_Login_UI/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Animated_Login_UI/main.html -------------------------------------------------------------------------------- /Animated_Login_UI/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Animated_Login_UI/main.js -------------------------------------------------------------------------------- /Animated_Login_UI/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Animated_Login_UI/readme.md -------------------------------------------------------------------------------- /Background_Color_Changer/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Background_Color_Changer/Readme.md -------------------------------------------------------------------------------- /Background_Color_Changer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Background_Color_Changer/index.html -------------------------------------------------------------------------------- /Background_Color_Changer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Background_Color_Changer/main.js -------------------------------------------------------------------------------- /Background_Color_Changer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Background_Color_Changer/style.css -------------------------------------------------------------------------------- /Ball-paddleGame/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Ball-paddleGame/README.MD -------------------------------------------------------------------------------- /Ball-paddleGame/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Ball-paddleGame/app.js -------------------------------------------------------------------------------- /Ball-paddleGame/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Ball-paddleGame/ball.png -------------------------------------------------------------------------------- /Ball-paddleGame/brick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Ball-paddleGame/brick.png -------------------------------------------------------------------------------- /Ball-paddleGame/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Ball-paddleGame/index.html -------------------------------------------------------------------------------- /Ball-paddleGame/sound.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Ball-paddleGame/sound.wav -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CV_Generator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/.gitignore -------------------------------------------------------------------------------- /CV_Generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/README.md -------------------------------------------------------------------------------- /CV_Generator/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/app.js -------------------------------------------------------------------------------- /CV_Generator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/package-lock.json -------------------------------------------------------------------------------- /CV_Generator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/package.json -------------------------------------------------------------------------------- /CV_Generator/public/css/all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/all.css -------------------------------------------------------------------------------- /CV_Generator/public/css/all.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/all.min.css -------------------------------------------------------------------------------- /CV_Generator/public/css/brands.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/brands.css -------------------------------------------------------------------------------- /CV_Generator/public/css/brands.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/brands.min.css -------------------------------------------------------------------------------- /CV_Generator/public/css/forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/forms.css -------------------------------------------------------------------------------- /CV_Generator/public/css/icon-font.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/icon-font.css -------------------------------------------------------------------------------- /CV_Generator/public/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/styles.css -------------------------------------------------------------------------------- /CV_Generator/public/css/webfonts/fa-brands-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/webfonts/fa-brands-400.eot -------------------------------------------------------------------------------- /CV_Generator/public/css/webfonts/fa-brands-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/webfonts/fa-brands-400.svg -------------------------------------------------------------------------------- /CV_Generator/public/css/webfonts/fa-brands-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/webfonts/fa-brands-400.ttf -------------------------------------------------------------------------------- /CV_Generator/public/css/webfonts/fa-brands-400.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/webfonts/fa-brands-400.woff -------------------------------------------------------------------------------- /CV_Generator/public/css/webfonts/fa-regular-400.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/webfonts/fa-regular-400.eot -------------------------------------------------------------------------------- /CV_Generator/public/css/webfonts/fa-regular-400.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/webfonts/fa-regular-400.svg -------------------------------------------------------------------------------- /CV_Generator/public/css/webfonts/fa-regular-400.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/webfonts/fa-regular-400.ttf -------------------------------------------------------------------------------- /CV_Generator/public/css/webfonts/fa-solid-900.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/webfonts/fa-solid-900.eot -------------------------------------------------------------------------------- /CV_Generator/public/css/webfonts/fa-solid-900.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/webfonts/fa-solid-900.svg -------------------------------------------------------------------------------- /CV_Generator/public/css/webfonts/fa-solid-900.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/webfonts/fa-solid-900.ttf -------------------------------------------------------------------------------- /CV_Generator/public/css/webfonts/fa-solid-900.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/webfonts/fa-solid-900.woff -------------------------------------------------------------------------------- /CV_Generator/public/css/webfonts/fa-solid-900.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/css/webfonts/fa-solid-900.woff2 -------------------------------------------------------------------------------- /CV_Generator/public/img/back_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/back_1.jpg -------------------------------------------------------------------------------- /CV_Generator/public/img/back_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/back_2.jpg -------------------------------------------------------------------------------- /CV_Generator/public/img/cert-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/cert-1.jpg -------------------------------------------------------------------------------- /CV_Generator/public/img/cert-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/cert-2.jpg -------------------------------------------------------------------------------- /CV_Generator/public/img/envelope-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/envelope-solid.svg -------------------------------------------------------------------------------- /CV_Generator/public/img/facebook-square-brands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/facebook-square-brands.svg -------------------------------------------------------------------------------- /CV_Generator/public/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/favicon.ico -------------------------------------------------------------------------------- /CV_Generator/public/img/form.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/form.jpg -------------------------------------------------------------------------------- /CV_Generator/public/img/instagram-brands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/instagram-brands.svg -------------------------------------------------------------------------------- /CV_Generator/public/img/linkedin-in-brands.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/linkedin-in-brands.svg -------------------------------------------------------------------------------- /CV_Generator/public/img/photo-1-uncahnged.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/photo-1-uncahnged.jpeg -------------------------------------------------------------------------------- /CV_Generator/public/img/photo-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/photo-1.jpg -------------------------------------------------------------------------------- /CV_Generator/public/img/photo-2-unchanged.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/photo-2-unchanged.jpeg -------------------------------------------------------------------------------- /CV_Generator/public/img/photo-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/photo-2.jpg -------------------------------------------------------------------------------- /CV_Generator/public/img/photo-3-uncahnged.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/photo-3-uncahnged.jpeg -------------------------------------------------------------------------------- /CV_Generator/public/img/photo-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/photo-3.jpg -------------------------------------------------------------------------------- /CV_Generator/public/img/resume_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/resume_logo.png -------------------------------------------------------------------------------- /CV_Generator/public/img/skills_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/skills_1.jpg -------------------------------------------------------------------------------- /CV_Generator/public/img/skills_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/skills_2.jpg -------------------------------------------------------------------------------- /CV_Generator/public/img/skills_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/skills_3.jpg -------------------------------------------------------------------------------- /CV_Generator/public/img/video.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/video.mp4 -------------------------------------------------------------------------------- /CV_Generator/public/img/video.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/public/img/video.webm -------------------------------------------------------------------------------- /CV_Generator/sass/abstract/_functions.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CV_Generator/sass/abstract/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/abstract/_mixins.scss -------------------------------------------------------------------------------- /CV_Generator/sass/abstract/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/abstract/_variables.scss -------------------------------------------------------------------------------- /CV_Generator/sass/base/_animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/base/_animations.scss -------------------------------------------------------------------------------- /CV_Generator/sass/base/_base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/base/_base.scss -------------------------------------------------------------------------------- /CV_Generator/sass/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/base/_typography.scss -------------------------------------------------------------------------------- /CV_Generator/sass/base/_utilities.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/base/_utilities.scss -------------------------------------------------------------------------------- /CV_Generator/sass/components/_bg-video.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/components/_bg-video.scss -------------------------------------------------------------------------------- /CV_Generator/sass/components/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/components/_button.scss -------------------------------------------------------------------------------- /CV_Generator/sass/components/_card.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/components/_card.scss -------------------------------------------------------------------------------- /CV_Generator/sass/components/_cert.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/components/_cert.scss -------------------------------------------------------------------------------- /CV_Generator/sass/components/_composition.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/components/_composition.scss -------------------------------------------------------------------------------- /CV_Generator/sass/components/_header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/components/_header.scss -------------------------------------------------------------------------------- /CV_Generator/sass/components/_hobby-box.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/components/_hobby-box.scss -------------------------------------------------------------------------------- /CV_Generator/sass/layout/_grid.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/layout/_grid.scss -------------------------------------------------------------------------------- /CV_Generator/sass/layout/_navigation.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/layout/_navigation.scss -------------------------------------------------------------------------------- /CV_Generator/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/main.scss -------------------------------------------------------------------------------- /CV_Generator/sass/pages/_home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/sass/pages/_home.scss -------------------------------------------------------------------------------- /CV_Generator/views/form.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/views/form.ejs -------------------------------------------------------------------------------- /CV_Generator/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/CV_Generator/views/index.ejs -------------------------------------------------------------------------------- /ClimbingGame/back.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ClimbingGame/back.jpeg -------------------------------------------------------------------------------- /ClimbingGame/climber_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ClimbingGame/climber_sprite.png -------------------------------------------------------------------------------- /ClimbingGame/climbing_the_flagpole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ClimbingGame/climbing_the_flagpole.js -------------------------------------------------------------------------------- /ClimbingGame/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ClimbingGame/index.html -------------------------------------------------------------------------------- /ClimbingGame/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ClimbingGame/man.png -------------------------------------------------------------------------------- /ClimbingGame/man_sprite.piskel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ClimbingGame/man_sprite.piskel -------------------------------------------------------------------------------- /ClimbingGame/pole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ClimbingGame/pole.png -------------------------------------------------------------------------------- /ClimbingGame/pole.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ClimbingGame/pole.xcf -------------------------------------------------------------------------------- /ClimbingGame/poleDone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ClimbingGame/poleDone.png -------------------------------------------------------------------------------- /ClimbingGame/spritestrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ClimbingGame/spritestrip.png -------------------------------------------------------------------------------- /Commalator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Commalator/README.md -------------------------------------------------------------------------------- /Commalator/checklist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Commalator/checklist.png -------------------------------------------------------------------------------- /Commalator/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Commalator/demo.gif -------------------------------------------------------------------------------- /Commalator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Commalator/index.html -------------------------------------------------------------------------------- /Commalator/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Commalator/script.js -------------------------------------------------------------------------------- /Commalator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Commalator/style.css -------------------------------------------------------------------------------- /ConwaysGameOfLife/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ConwaysGameOfLife/README.md -------------------------------------------------------------------------------- /ConwaysGameOfLife/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ConwaysGameOfLife/app.js -------------------------------------------------------------------------------- /ConwaysGameOfLife/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ConwaysGameOfLife/css/style.css -------------------------------------------------------------------------------- /ConwaysGameOfLife/examples/Crawler.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ConwaysGameOfLife/examples/Crawler.gif -------------------------------------------------------------------------------- /ConwaysGameOfLife/examples/block_with_border.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ConwaysGameOfLife/examples/block_with_border.svg -------------------------------------------------------------------------------- /ConwaysGameOfLife/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ConwaysGameOfLife/index.html -------------------------------------------------------------------------------- /ConwaysGameOfLife/jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ConwaysGameOfLife/jsconfig.json -------------------------------------------------------------------------------- /Dark_Mode_Toggler/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dark_Mode_Toggler/Readme.md -------------------------------------------------------------------------------- /Dark_Mode_Toggler/images/dark.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dark_Mode_Toggler/images/dark.gif -------------------------------------------------------------------------------- /Dark_Mode_Toggler/images/doc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dark_Mode_Toggler/images/doc.svg -------------------------------------------------------------------------------- /Dark_Mode_Toggler/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dark_Mode_Toggler/main.html -------------------------------------------------------------------------------- /Dark_Mode_Toggler/styler.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dark_Mode_Toggler/styler.css -------------------------------------------------------------------------------- /Dark_Mode_Toggler/toggler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dark_Mode_Toggler/toggler.js -------------------------------------------------------------------------------- /Dice_Game/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dice_Game/Readme.md -------------------------------------------------------------------------------- /Dice_Game/game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dice_Game/game.html -------------------------------------------------------------------------------- /Dice_Game/images/dice1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dice_Game/images/dice1.png -------------------------------------------------------------------------------- /Dice_Game/images/dice2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dice_Game/images/dice2.png -------------------------------------------------------------------------------- /Dice_Game/images/dice3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dice_Game/images/dice3.png -------------------------------------------------------------------------------- /Dice_Game/images/dice4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dice_Game/images/dice4.png -------------------------------------------------------------------------------- /Dice_Game/images/dice5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dice_Game/images/dice5.png -------------------------------------------------------------------------------- /Dice_Game/images/dice6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dice_Game/images/dice6.png -------------------------------------------------------------------------------- /Dice_Game/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dice_Game/images/favicon.png -------------------------------------------------------------------------------- /Dice_Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dice_Game/index.html -------------------------------------------------------------------------------- /Dice_Game/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dice_Game/input.js -------------------------------------------------------------------------------- /Dice_Game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dice_Game/script.js -------------------------------------------------------------------------------- /Dice_Game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dice_Game/style.css -------------------------------------------------------------------------------- /Dice_Game/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Dice_Game/styles.css -------------------------------------------------------------------------------- /Drum-machine/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Drum-machine/README.md -------------------------------------------------------------------------------- /Drum-machine/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Drum-machine/app.js -------------------------------------------------------------------------------- /Drum-machine/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Drum-machine/index.html -------------------------------------------------------------------------------- /FuzzyExtensionPrinciple-ShiviDev/FuzzyMath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/FuzzyExtensionPrinciple-ShiviDev/FuzzyMath.c -------------------------------------------------------------------------------- /FuzzyExtensionPrinciple-ShiviDev/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/FuzzyExtensionPrinciple-ShiviDev/readme.md -------------------------------------------------------------------------------- /Guess-The-Bollywood-Movie/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Guess-The-Bollywood-Movie/Readme.md -------------------------------------------------------------------------------- /Guess-The-Bollywood-Movie/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Guess-The-Bollywood-Movie/index.html -------------------------------------------------------------------------------- /Guess-The-Bollywood-Movie/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Guess-The-Bollywood-Movie/index.js -------------------------------------------------------------------------------- /Guess-The-Bollywood-Movie/styles/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Guess-The-Bollywood-Movie/styles/styles.css -------------------------------------------------------------------------------- /Hacktoberfest_Countdown_Timer/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Hacktoberfest_Countdown_Timer/Readme.md -------------------------------------------------------------------------------- /Hacktoberfest_Countdown_Timer/count_timer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Hacktoberfest_Countdown_Timer/count_timer.js -------------------------------------------------------------------------------- /Hacktoberfest_Countdown_Timer/images/giphy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Hacktoberfest_Countdown_Timer/images/giphy.gif -------------------------------------------------------------------------------- /Hacktoberfest_Countdown_Timer/images/ico.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Hacktoberfest_Countdown_Timer/images/ico.svg -------------------------------------------------------------------------------- /Hacktoberfest_Countdown_Timer/images/iconlr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Hacktoberfest_Countdown_Timer/images/iconlr.svg -------------------------------------------------------------------------------- /Hacktoberfest_Countdown_Timer/landing-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Hacktoberfest_Countdown_Timer/landing-page.html -------------------------------------------------------------------------------- /Hacktoberfest_Countdown_Timer/page-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Hacktoberfest_Countdown_Timer/page-style.css -------------------------------------------------------------------------------- /Image-Cropper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Image-Cropper/README.md -------------------------------------------------------------------------------- /Image-Cropper/cropper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Image-Cropper/cropper.py -------------------------------------------------------------------------------- /Image-Cropper/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Image-Cropper/demo.gif -------------------------------------------------------------------------------- /Image-Cropper/ss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Image-Cropper/ss.png -------------------------------------------------------------------------------- /Javascript_Quiz-pratikroy107/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Javascript_Quiz-pratikroy107/README.md -------------------------------------------------------------------------------- /Javascript_Quiz-pratikroy107/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Javascript_Quiz-pratikroy107/index.html -------------------------------------------------------------------------------- /Javascript_Quiz-pratikroy107/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Javascript_Quiz-pratikroy107/script.js -------------------------------------------------------------------------------- /Javascript_Quiz-pratikroy107/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Javascript_Quiz-pratikroy107/style.css -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/LICENSE -------------------------------------------------------------------------------- /LandingPage/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/LandingPage/Readme.md -------------------------------------------------------------------------------- /LandingPage/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/LandingPage/index.html -------------------------------------------------------------------------------- /LandingPage/landing page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/LandingPage/landing page.png -------------------------------------------------------------------------------- /LandingPage/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/LandingPage/style.css -------------------------------------------------------------------------------- /LandingPage/undraw_things_to_say_ewwb (1).svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/LandingPage/undraw_things_to_say_ewwb (1).svg -------------------------------------------------------------------------------- /Magic square calculator/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Magic square calculator/Readme.md -------------------------------------------------------------------------------- /Magic square calculator/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Magic square calculator/app.js -------------------------------------------------------------------------------- /Magic square calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Magic square calculator/index.html -------------------------------------------------------------------------------- /Magic square calculator/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Magic square calculator/styles.css -------------------------------------------------------------------------------- /Math-Chaos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Math-Chaos/README.md -------------------------------------------------------------------------------- /Math-Chaos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Math-Chaos/index.html -------------------------------------------------------------------------------- /Math-Chaos/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Math-Chaos/main.js -------------------------------------------------------------------------------- /MemoryGame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MemoryGame/README.md -------------------------------------------------------------------------------- /MemoryGame/blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MemoryGame/blank.png -------------------------------------------------------------------------------- /MemoryGame/cheeseburger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MemoryGame/cheeseburger.png -------------------------------------------------------------------------------- /MemoryGame/fries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MemoryGame/fries.png -------------------------------------------------------------------------------- /MemoryGame/hotdog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MemoryGame/hotdog.png -------------------------------------------------------------------------------- /MemoryGame/ice-cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MemoryGame/ice-cream.png -------------------------------------------------------------------------------- /MemoryGame/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MemoryGame/index.html -------------------------------------------------------------------------------- /MemoryGame/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MemoryGame/index.js -------------------------------------------------------------------------------- /MemoryGame/milkshake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MemoryGame/milkshake.png -------------------------------------------------------------------------------- /MemoryGame/pizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MemoryGame/pizza.png -------------------------------------------------------------------------------- /MemoryGame/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MemoryGame/style.css -------------------------------------------------------------------------------- /MemoryGame/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MemoryGame/white.png -------------------------------------------------------------------------------- /MineSweeper-Ayush21042002/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MineSweeper-Ayush21042002/app.js -------------------------------------------------------------------------------- /MineSweeper-Ayush21042002/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MineSweeper-Ayush21042002/index.html -------------------------------------------------------------------------------- /MineSweeper-Ayush21042002/lose.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MineSweeper-Ayush21042002/lose.PNG -------------------------------------------------------------------------------- /MineSweeper-Ayush21042002/minesweeper.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MineSweeper-Ayush21042002/minesweeper.gif -------------------------------------------------------------------------------- /MineSweeper-Ayush21042002/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MineSweeper-Ayush21042002/readme.md -------------------------------------------------------------------------------- /MineSweeper-Ayush21042002/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MineSweeper-Ayush21042002/style.css -------------------------------------------------------------------------------- /MineSweeper-Ayush21042002/win.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/MineSweeper-Ayush21042002/win.PNG -------------------------------------------------------------------------------- /Neumorphic-Calculator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Neumorphic-Calculator/README.md -------------------------------------------------------------------------------- /Neumorphic-Calculator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Neumorphic-Calculator/index.html -------------------------------------------------------------------------------- /Neumorphic-Calculator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Neumorphic-Calculator/index.js -------------------------------------------------------------------------------- /Neumorphic-Calculator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Neumorphic-Calculator/style.css -------------------------------------------------------------------------------- /NewsApp_Flask/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/NewsApp_Flask/app.py -------------------------------------------------------------------------------- /NewsApp_Flask/assets/snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/NewsApp_Flask/assets/snap.png -------------------------------------------------------------------------------- /NewsApp_Flask/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/NewsApp_Flask/readme.md -------------------------------------------------------------------------------- /NewsApp_Flask/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/NewsApp_Flask/requirements.txt -------------------------------------------------------------------------------- /NewsApp_Flask/templates/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/NewsApp_Flask/templates/news.html -------------------------------------------------------------------------------- /Notepad-siddhantkhariwal/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Notepad-siddhantkhariwal/Readme.md -------------------------------------------------------------------------------- /Notepad-siddhantkhariwal/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Notepad-siddhantkhariwal/index.html -------------------------------------------------------------------------------- /Notepad-siddhantkhariwal/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Notepad-siddhantkhariwal/script.js -------------------------------------------------------------------------------- /Notepad-siddhantkhariwal/skrr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Notepad-siddhantkhariwal/skrr.jpg -------------------------------------------------------------------------------- /NotesApp(7suyash7)/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/NotesApp(7suyash7)/index.html -------------------------------------------------------------------------------- /NotesApp(7suyash7)/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/NotesApp(7suyash7)/readme.md -------------------------------------------------------------------------------- /NotesApp(7suyash7)/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/NotesApp(7suyash7)/script.js -------------------------------------------------------------------------------- /Number_Guessing_Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Number_Guessing_Game/README.md -------------------------------------------------------------------------------- /Number_Guessing_Game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Number_Guessing_Game/index.html -------------------------------------------------------------------------------- /Number_Guessing_Game/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Number_Guessing_Game/script.js -------------------------------------------------------------------------------- /Number_Guessing_Game/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Number_Guessing_Game/styles.css -------------------------------------------------------------------------------- /Phone-Number-Validator/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Phone-Number-Validator/app.js -------------------------------------------------------------------------------- /Phone-Number-Validator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Phone-Number-Validator/index.html -------------------------------------------------------------------------------- /Phone-Number-Validator/project.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Phone-Number-Validator/project.gif -------------------------------------------------------------------------------- /Phone-Number-Validator/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Phone-Number-Validator/readme.md -------------------------------------------------------------------------------- /Phone-Number-Validator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Phone-Number-Validator/style.css -------------------------------------------------------------------------------- /Phoxy-swapnil0709/Images/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Phoxy-swapnil0709/Images/icons.svg -------------------------------------------------------------------------------- /Phoxy-swapnil0709/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Phoxy-swapnil0709/README.md -------------------------------------------------------------------------------- /Phoxy-swapnil0709/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Phoxy-swapnil0709/app.js -------------------------------------------------------------------------------- /Phoxy-swapnil0709/ezgif.com-gif-maker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Phoxy-swapnil0709/ezgif.com-gif-maker.gif -------------------------------------------------------------------------------- /Phoxy-swapnil0709/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Phoxy-swapnil0709/index.html -------------------------------------------------------------------------------- /Phoxy-swapnil0709/phoxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Phoxy-swapnil0709/phoxy.png -------------------------------------------------------------------------------- /Phoxy-swapnil0709/styles/_global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Phoxy-swapnil0709/styles/_global.scss -------------------------------------------------------------------------------- /Phoxy-swapnil0709/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Phoxy-swapnil0709/styles/style.css -------------------------------------------------------------------------------- /Phoxy-swapnil0709/styles/style.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Phoxy-swapnil0709/styles/style.css.map -------------------------------------------------------------------------------- /Phoxy-swapnil0709/styles/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Phoxy-swapnil0709/styles/style.scss -------------------------------------------------------------------------------- /Profile-Extension/codeforces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Profile-Extension/codeforces.png -------------------------------------------------------------------------------- /Profile-Extension/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Profile-Extension/github.png -------------------------------------------------------------------------------- /Profile-Extension/insta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Profile-Extension/insta.png -------------------------------------------------------------------------------- /Profile-Extension/linkedin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Profile-Extension/linkedin.png -------------------------------------------------------------------------------- /Profile-Extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Profile-Extension/manifest.json -------------------------------------------------------------------------------- /Profile-Extension/nactore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Profile-Extension/nactore.png -------------------------------------------------------------------------------- /Profile-Extension/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Profile-Extension/popup.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/README.md -------------------------------------------------------------------------------- /Rock-Paper-Scissors/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Rock-Paper-Scissors/README.md -------------------------------------------------------------------------------- /Rock-Paper-Scissors/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Rock-Paper-Scissors/background.gif -------------------------------------------------------------------------------- /Rock-Paper-Scissors/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Rock-Paper-Scissors/index.html -------------------------------------------------------------------------------- /Rock-Paper-Scissors/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Rock-Paper-Scissors/index.js -------------------------------------------------------------------------------- /Rock-Paper-Scissors/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Rock-Paper-Scissors/style.css -------------------------------------------------------------------------------- /SWOT-Analysis-Generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/SWOT-Analysis-Generator/README.md -------------------------------------------------------------------------------- /SWOT-Analysis-Generator/compute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/SWOT-Analysis-Generator/compute.js -------------------------------------------------------------------------------- /SWOT-Analysis-Generator/generated.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/SWOT-Analysis-Generator/generated.css -------------------------------------------------------------------------------- /SWOT-Analysis-Generator/generated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/SWOT-Analysis-Generator/generated.html -------------------------------------------------------------------------------- /SWOT-Analysis-Generator/generated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/SWOT-Analysis-Generator/generated.js -------------------------------------------------------------------------------- /SWOT-Analysis-Generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/SWOT-Analysis-Generator/index.html -------------------------------------------------------------------------------- /SWOT-Analysis-Generator/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/SWOT-Analysis-Generator/style.css -------------------------------------------------------------------------------- /SWOT-Analysis-Generator/swot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/SWOT-Analysis-Generator/swot.png -------------------------------------------------------------------------------- /SWOT-Analysis-Generator/swot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/SWOT-Analysis-Generator/swot1.png -------------------------------------------------------------------------------- /Shades-ColorGenerator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/.gitignore -------------------------------------------------------------------------------- /Shades-ColorGenerator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/README.md -------------------------------------------------------------------------------- /Shades-ColorGenerator/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/package-lock.json -------------------------------------------------------------------------------- /Shades-ColorGenerator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/package.json -------------------------------------------------------------------------------- /Shades-ColorGenerator/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/public/favicon.ico -------------------------------------------------------------------------------- /Shades-ColorGenerator/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/public/index.html -------------------------------------------------------------------------------- /Shades-ColorGenerator/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/public/logo192.png -------------------------------------------------------------------------------- /Shades-ColorGenerator/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/public/logo512.png -------------------------------------------------------------------------------- /Shades-ColorGenerator/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/public/manifest.json -------------------------------------------------------------------------------- /Shades-ColorGenerator/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/public/robots.txt -------------------------------------------------------------------------------- /Shades-ColorGenerator/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/src/App.js -------------------------------------------------------------------------------- /Shades-ColorGenerator/src/SingleColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/src/SingleColor.js -------------------------------------------------------------------------------- /Shades-ColorGenerator/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/src/index.css -------------------------------------------------------------------------------- /Shades-ColorGenerator/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/src/index.js -------------------------------------------------------------------------------- /Shades-ColorGenerator/src/shades.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/src/shades.PNG -------------------------------------------------------------------------------- /Shades-ColorGenerator/src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Shades-ColorGenerator/src/utils.js -------------------------------------------------------------------------------- /SnakeGame-thetribunalcode/food.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/SnakeGame-thetribunalcode/food.py -------------------------------------------------------------------------------- /SnakeGame-thetribunalcode/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/SnakeGame-thetribunalcode/main.py -------------------------------------------------------------------------------- /SnakeGame-thetribunalcode/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/SnakeGame-thetribunalcode/readme.md -------------------------------------------------------------------------------- /SnakeGame-thetribunalcode/scoreboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/SnakeGame-thetribunalcode/scoreboard.py -------------------------------------------------------------------------------- /SnakeGame-thetribunalcode/snake.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/SnakeGame-thetribunalcode/snake.gif -------------------------------------------------------------------------------- /SnakeGame-thetribunalcode/snake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/SnakeGame-thetribunalcode/snake.py -------------------------------------------------------------------------------- /Space-Invaders-Js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Space-Invaders-Js/README.md -------------------------------------------------------------------------------- /Space-Invaders-Js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Space-Invaders-Js/app.js -------------------------------------------------------------------------------- /Space-Invaders-Js/design.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Space-Invaders-Js/design.css -------------------------------------------------------------------------------- /Space-Invaders-Js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Space-Invaders-Js/index.html -------------------------------------------------------------------------------- /Space-Invaders-Js/space-invaders_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Space-Invaders-Js/space-invaders_gif.gif -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/.gitignore -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/README.md -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/package-lock.json -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/package.json -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/public/favicon.ico -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/public/index.html -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/public/logo192.png -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/public/logo512.png -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/public/robots.txt -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/App.js -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/DataLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/DataLayer.js -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/Header.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/Header.css -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/Header.js -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/Login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/Login.css -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/Login.js -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/Player.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/Player.css -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/Player.js -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/PlayingTrack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/PlayingTrack.js -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/Readme.md -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/TrackSearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/TrackSearch.css -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/TrackSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/TrackSearch.js -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/index.css -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/index.js -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/reducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/reducer.js -------------------------------------------------------------------------------- /Spotify-Clone/spotify-clone-app/src/spotify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Spotify-Clone/spotify-clone-app/src/spotify.js -------------------------------------------------------------------------------- /StockPriceAlerter/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/StockPriceAlerter/app.js -------------------------------------------------------------------------------- /StockPriceAlerter/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/StockPriceAlerter/package-lock.json -------------------------------------------------------------------------------- /StockPriceAlerter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/StockPriceAlerter/package.json -------------------------------------------------------------------------------- /StockPriceAlerter/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/StockPriceAlerter/readme.md -------------------------------------------------------------------------------- /Stopwatch/.gitignore: -------------------------------------------------------------------------------- 1 | # dependencies 2 | /node_modules 3 | -------------------------------------------------------------------------------- /Stopwatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Stopwatch/README.md -------------------------------------------------------------------------------- /Stopwatch/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Stopwatch/index.html -------------------------------------------------------------------------------- /Stopwatch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Stopwatch/index.js -------------------------------------------------------------------------------- /Stopwatch/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Stopwatch/package-lock.json -------------------------------------------------------------------------------- /Stopwatch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Stopwatch/package.json -------------------------------------------------------------------------------- /Stopwatch/src/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Stopwatch/src/demo.gif -------------------------------------------------------------------------------- /Stopwatch/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Stopwatch/src/index.js -------------------------------------------------------------------------------- /Stopwatch/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Stopwatch/style.css -------------------------------------------------------------------------------- /Tic Tac Toe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Tic Tac Toe/README.md -------------------------------------------------------------------------------- /Tic Tac Toe/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Tic Tac Toe/index.html -------------------------------------------------------------------------------- /Tic Tac Toe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Tic Tac Toe/index.js -------------------------------------------------------------------------------- /Tic Tac Toe/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Tic Tac Toe/style.css -------------------------------------------------------------------------------- /Todo/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Todo/ReadMe.md -------------------------------------------------------------------------------- /Todo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Todo/index.html -------------------------------------------------------------------------------- /Todo/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Todo/script.js -------------------------------------------------------------------------------- /Todo/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Todo/style.css -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/FoodPanda-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/FoodPanda-logo.png -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/README.md -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/Swiggy-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/Swiggy-logo.png -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/Uber-Eats-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/Uber-Eats-logo.png -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/apollo-clinic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/apollo-clinic.png -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/arijitmain2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/arijitmain2.jpg -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/ashu-pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/ashu-pic.png -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/blur-arijit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/blur-arijit.jpg -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/blur-ashu2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/blur-ashu2.png -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/blur-pratik.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/blur-pratik.jpg -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/blur-raghav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/blur-raghav.jpg -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/giphy-coronavirus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/giphy-coronavirus.gif -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/images/logof.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/images/logof.jpg -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/images/logof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/images/logof.png -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/index.html -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/logof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/logof.png -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/pratik-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/pratik-pic.jpg -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/raghav-pic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/raghav-pic.jpg -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/services/3-doctor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/services/3-doctor.css -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/services/3-doctor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/services/3-doctor.html -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/services/4-vaccine.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/services/4-vaccine.css -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/services/4-vaccine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/services/4-vaccine.html -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/services/5-food.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/services/5-food.css -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/services/5-food.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/services/5-food.html -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/services/logof.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/services/logof.jpg -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/services/logof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/services/logof.png -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/style.css -------------------------------------------------------------------------------- /Virtual-Health-Care-Website/zomato-logo-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Virtual-Health-Care-Website/zomato-logo-0.png -------------------------------------------------------------------------------- /Weather_Forecast/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Weather_Forecast/Readme.md -------------------------------------------------------------------------------- /Weather_Forecast/images/d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Weather_Forecast/images/d.jpg -------------------------------------------------------------------------------- /Weather_Forecast/images/image.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Weather_Forecast/images/image.gif -------------------------------------------------------------------------------- /Weather_Forecast/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Weather_Forecast/index.html -------------------------------------------------------------------------------- /Weather_Forecast/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Weather_Forecast/script.js -------------------------------------------------------------------------------- /Weather_Forecast/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Weather_Forecast/styles.css -------------------------------------------------------------------------------- /Word_Counter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Word_Counter/README.md -------------------------------------------------------------------------------- /Word_Counter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Word_Counter/index.html -------------------------------------------------------------------------------- /Word_Counter/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Word_Counter/script.js -------------------------------------------------------------------------------- /Word_Counter/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Word_Counter/styles.css -------------------------------------------------------------------------------- /Zomato-clone/.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.insertFinalNewline": true 3 | } 4 | -------------------------------------------------------------------------------- /Zomato-clone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/README.md -------------------------------------------------------------------------------- /Zomato-clone/assets/burger.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/assets/burger.jpg -------------------------------------------------------------------------------- /Zomato-clone/assets/hero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/assets/hero.jpg -------------------------------------------------------------------------------- /Zomato-clone/assets/iceCream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/assets/iceCream.jpg -------------------------------------------------------------------------------- /Zomato-clone/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/assets/logo.png -------------------------------------------------------------------------------- /Zomato-clone/assets/main_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/assets/main_back.png -------------------------------------------------------------------------------- /Zomato-clone/assets/man.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/assets/man.png -------------------------------------------------------------------------------- /Zomato-clone/assets/overlay.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/assets/overlay.jpeg -------------------------------------------------------------------------------- /Zomato-clone/assets/pizza.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/assets/pizza.jpg -------------------------------------------------------------------------------- /Zomato-clone/assets/restaurant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/assets/restaurant.jpg -------------------------------------------------------------------------------- /Zomato-clone/assets/restaurant1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/assets/restaurant1.jpg -------------------------------------------------------------------------------- /Zomato-clone/assets/restaurant2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/assets/restaurant2.jpg -------------------------------------------------------------------------------- /Zomato-clone/assets/restaurant3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/assets/restaurant3.jpg -------------------------------------------------------------------------------- /Zomato-clone/assets/restaurant4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/assets/restaurant4.jpg -------------------------------------------------------------------------------- /Zomato-clone/assets/svg/heroShape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/assets/svg/heroShape.svg -------------------------------------------------------------------------------- /Zomato-clone/assets/svg/herobgpattren.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/assets/svg/herobgpattren.svg -------------------------------------------------------------------------------- /Zomato-clone/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/index.html -------------------------------------------------------------------------------- /Zomato-clone/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/Zomato-clone/style.css -------------------------------------------------------------------------------- /animation/animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/animation.html -------------------------------------------------------------------------------- /animation/instructions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/instructions.txt -------------------------------------------------------------------------------- /animation/newDesignRes/css/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/css/.DS_Store -------------------------------------------------------------------------------- /animation/newDesignRes/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/css/animate.css -------------------------------------------------------------------------------- /animation/newDesignRes/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/css/bootstrap-grid.css -------------------------------------------------------------------------------- /animation/newDesignRes/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /animation/newDesignRes/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/css/bootstrap.css -------------------------------------------------------------------------------- /animation/newDesignRes/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/css/bootstrap.css.map -------------------------------------------------------------------------------- /animation/newDesignRes/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/css/bootstrap.min.css -------------------------------------------------------------------------------- /animation/newDesignRes/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /animation/newDesignRes/css/fix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/css/fix.css -------------------------------------------------------------------------------- /animation/newDesignRes/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/css/main.css -------------------------------------------------------------------------------- /animation/newDesignRes/css/mainFix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/css/mainFix.css -------------------------------------------------------------------------------- /animation/newDesignRes/css/mainMedium.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/css/mainMedium.css -------------------------------------------------------------------------------- /animation/newDesignRes/css/mainSmall.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/css/mainSmall.css -------------------------------------------------------------------------------- /animation/newDesignRes/css/mini.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/css/mini.css -------------------------------------------------------------------------------- /animation/newDesignRes/font/BEBAS.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/font/BEBAS.ttf -------------------------------------------------------------------------------- /animation/newDesignRes/font/GeosansLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/font/GeosansLight.ttf -------------------------------------------------------------------------------- /animation/newDesignRes/font/LemonMilk.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/font/LemonMilk.otf -------------------------------------------------------------------------------- /animation/newDesignRes/font/Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/font/Regular.ttf -------------------------------------------------------------------------------- /animation/newDesignRes/font/Vogue.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/font/Vogue.ttf -------------------------------------------------------------------------------- /animation/newDesignRes/font/coolvetica.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/font/coolvetica.ttf -------------------------------------------------------------------------------- /animation/newDesignRes/font/hel.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/font/hel.ttf -------------------------------------------------------------------------------- /animation/newDesignRes/font/meg.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/font/meg.ttf -------------------------------------------------------------------------------- /animation/newDesignRes/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /animation/newDesignRes/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/js/bootstrap.js -------------------------------------------------------------------------------- /animation/newDesignRes/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/js/bootstrap.js.map -------------------------------------------------------------------------------- /animation/newDesignRes/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/js/bootstrap.min.js -------------------------------------------------------------------------------- /animation/newDesignRes/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/newDesignRes/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /animation/pageResources/cropped.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/pageResources/cropped.mp4 -------------------------------------------------------------------------------- /animation/pageResources/cropped.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/pageResources/cropped.ogv -------------------------------------------------------------------------------- /animation/pageResources/cropped.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/pageResources/cropped.webm -------------------------------------------------------------------------------- /animation/pageResources/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/pageResources/script.js -------------------------------------------------------------------------------- /animation/pageResources/untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/pageResources/untitled.png -------------------------------------------------------------------------------- /animation/pageResources/untitlednew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/animation/pageResources/untitlednew.png -------------------------------------------------------------------------------- /clock_js/clock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/clock_js/clock.js -------------------------------------------------------------------------------- /clock_js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/clock_js/index.html -------------------------------------------------------------------------------- /clock_js/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/clock_js/style.css -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_ICONFONT/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_ICONFONT/.DS_Store -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_ICONFONT/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_ICONFONT/styles.css -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/.DS_Store -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_alarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_alarm.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_anchor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_anchor.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_archive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_archive.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_ban.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_ban.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_bolt.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_book.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_book_pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_book_pen.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_bookmark.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_calendar.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_case.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_case.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_clessidre.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_clessidre.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_clock.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_clockwise.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_clockwise.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_cloud.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_clubs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_clubs.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_compass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_compass.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_cup.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_diamonds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_diamonds.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_display.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_display.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_download.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_eye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_eye.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_female.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_female.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_flag1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_flag1.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_flag2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_flag2.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_folder.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_gear.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_globe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_globe.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_gunsight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_gunsight.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_hammer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_hammer.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_headset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_headset.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_heart.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_helm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_helm.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_home.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_info.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_ipod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_ipod.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_joypad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_joypad.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_key.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_keyboard.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_laptop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_laptop.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_life_buoy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_life_buoy.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_lightbulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_lightbulb.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_link.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_lock.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_lock_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_lock_open.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_magnifier.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_mail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_mail.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_mail_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_mail_open.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_male.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_male.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_map.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_message.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_message.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_mixer2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_mixer2.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_mouse.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_notebook.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_photo.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_picture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_picture.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_pin1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_pin1.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_pin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_pin2.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_postcard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_postcard.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_printer.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_question.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_question.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_rss.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_server.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_server2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_server2.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_settings.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_share.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_sheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_sheet.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_sheet_pen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_sheet_pen.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_signs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_signs.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_spades.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_spades.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_spread.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_spread.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_star.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_tablet.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_target.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_todo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_todo.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_todo_pen .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_todo_pen .png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_todo_txt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_todo_txt.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_trashcan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_trashcan.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_upload.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_usb.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_video.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_watch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_watch.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_webpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_webpage.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_PNG 64/basic_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_PNG 64/basic_world.png -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG expanded/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG expanded/.DS_Store -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG expanded/basic_ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG expanded/basic_ban.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG expanded/basic_cup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG expanded/basic_cup.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG expanded/basic_eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG expanded/basic_eye.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG expanded/basic_key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG expanded/basic_key.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG expanded/basic_map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG expanded/basic_map.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG expanded/basic_rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG expanded/basic_rss.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG expanded/basic_usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG expanded/basic_usb.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/.DS_Store -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_accelerator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_accelerator.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_alarm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_alarm.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_anchor.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_anchor.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_archive.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_archive.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_archive_full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_archive_full.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_ban.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_ban.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_battery_full.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_battery_full.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_battery_half.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_battery_half.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_bolt.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_book.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_book_pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_book_pen.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_book_pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_book_pencil.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_bookmark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_bookmark.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_calculator.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_calculator.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_calendar.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_calendar.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_cards_hearts.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_cards_hearts.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_case.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_case.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_chronometer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_chronometer.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_clessidre.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_clessidre.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_clock.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_clockwise.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_clockwise.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_cloud.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_clubs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_clubs.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_compass.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_compass.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_cup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_cup.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_diamonds.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_diamonds.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_display.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_display.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_download.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_download.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_exclamation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_exclamation.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_eye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_eye.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_eye_closed.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_eye_closed.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_female.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_female.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_flag1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_flag1.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_flag2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_flag2.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_floppydisk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_floppydisk.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_folder.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_gear.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_gear.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_globe.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_globe.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_gunsight.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_gunsight.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_hammer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_hammer.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_headset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_headset.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_heart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_heart.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_heart_broken.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_heart_broken.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_helm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_helm.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_home.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_home.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_info.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_info.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_ipod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_ipod.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_joypad.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_joypad.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_key.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_key.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_keyboard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_keyboard.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_laptop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_laptop.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_life_buoy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_life_buoy.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_lightbulb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_lightbulb.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_link.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_lock.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_lock_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_lock_open.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_magic_mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_magic_mouse.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_magnifier.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_magnifier.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_mail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_mail.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_mail_open.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_mail_open.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_male.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_male.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_map.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_map.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_message.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_message.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_message_txt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_message_txt.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_mixer2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_mixer2.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_mouse.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_mouse.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_notebook.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_notebook.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_notebook_pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_notebook_pen.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_paperplane.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_paperplane.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_pencil_ruler.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_pencil_ruler.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_photo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_photo.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_picture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_picture.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_pin1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_pin1.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_pin2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_pin2.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_postcard.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_postcard.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_printer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_printer.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_question.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_question.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_rss.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_rss.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_server.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_server.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_server2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_server2.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_server_cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_server_cloud.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_settings.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_share.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_share.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_sheet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_sheet.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_sheet_pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_sheet_pen.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_sheet_pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_sheet_pencil.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_sheet_txt .svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_sheet_txt .svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_signs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_signs.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_smartphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_smartphone.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_spades.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_spades.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_spread.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_spread.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_spread_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_spread_text.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_star.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_tablet.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_tablet.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_target.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_target.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_todo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_todo.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_todo_pen .svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_todo_pen .svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_todo_pencil.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_todo_pencil.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_todo_txt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_todo_txt.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_todolist_pen.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_todolist_pen.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_trashcan.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_trashcan.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_upload.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_upload.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_usb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_usb.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_video.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_video.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_watch.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_watch.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_webpage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_webpage.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_webpage_txt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_webpage_txt.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/_SVG/basic_world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/_SVG/basic_world.svg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/__MACOSX/._read_me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/__MACOSX/._read_me.txt -------------------------------------------------------------------------------- /icon/linea_basic_1.0/__MACOSX/_ICONFONT/._fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/__MACOSX/_ICONFONT/._fonts -------------------------------------------------------------------------------- /icon/linea_basic_1.0/__MACOSX/_SVG/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/__MACOSX/_SVG/._.DS_Store -------------------------------------------------------------------------------- /icon/linea_basic_1.0/linea_basic_1.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/linea_basic_1.0.jpg -------------------------------------------------------------------------------- /icon/linea_basic_1.0/read_me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_basic_1.0/read_me.txt -------------------------------------------------------------------------------- /icon/linea_music_1.0/_ICONFONT/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_ICONFONT/.DS_Store -------------------------------------------------------------------------------- /icon/linea_music_1.0/_ICONFONT/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_ICONFONT/fonts/.DS_Store -------------------------------------------------------------------------------- /icon/linea_music_1.0/_ICONFONT/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_ICONFONT/styles.css -------------------------------------------------------------------------------- /icon/linea_music_1.0/_PNG64/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_PNG64/.DS_Store -------------------------------------------------------------------------------- /icon/linea_music_1.0/_PNG64/music_bell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_PNG64/music_bell.png -------------------------------------------------------------------------------- /icon/linea_music_1.0/_PNG64/music_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_PNG64/music_cd.png -------------------------------------------------------------------------------- /icon/linea_music_1.0/_PNG64/music_diapason.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_PNG64/music_diapason.png -------------------------------------------------------------------------------- /icon/linea_music_1.0/_PNG64/music_end_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_PNG64/music_end_button.png -------------------------------------------------------------------------------- /icon/linea_music_1.0/_PNG64/music_headphones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_PNG64/music_headphones.png -------------------------------------------------------------------------------- /icon/linea_music_1.0/_PNG64/music_ipod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_PNG64/music_ipod.png -------------------------------------------------------------------------------- /icon/linea_music_1.0/_PNG64/music_microphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_PNG64/music_microphone.png -------------------------------------------------------------------------------- /icon/linea_music_1.0/_PNG64/music_mixer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_PNG64/music_mixer.png -------------------------------------------------------------------------------- /icon/linea_music_1.0/_PNG64/music_mute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_PNG64/music_mute.png -------------------------------------------------------------------------------- /icon/linea_music_1.0/_PNG64/music_playlist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_PNG64/music_playlist.png -------------------------------------------------------------------------------- /icon/linea_music_1.0/_PNG64/music_record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_PNG64/music_record.png -------------------------------------------------------------------------------- /icon/linea_music_1.0/_PNG64/music_tape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_PNG64/music_tape.png -------------------------------------------------------------------------------- /icon/linea_music_1.0/_PNG64/music_volume_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_PNG64/music_volume_up.png -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG expanded/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG expanded/.DS_Store -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG expanded/music_cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG expanded/music_cd.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/.DS_Store -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_bell.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_bell.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_cd.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_cd.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_diapason.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_diapason.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_eject_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_eject_button.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_end_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_end_button.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_headphones.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_headphones.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_ipod.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_ipod.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_loudspeaker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_loudspeaker.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_microphone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_microphone.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_mixer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_mixer.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_mute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_mute.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_note_single.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_note_single.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_pause_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_pause_button.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_play_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_play_button.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_playlist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_playlist.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_record.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_record.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_recordplayer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_recordplayer.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_stop_button.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_stop_button.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_tape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_tape.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_volume_down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_volume_down.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/_SVG/music_volume_up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/_SVG/music_volume_up.svg -------------------------------------------------------------------------------- /icon/linea_music_1.0/__MACOSX/._read_me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/__MACOSX/._read_me.txt -------------------------------------------------------------------------------- /icon/linea_music_1.0/__MACOSX/_ICONFONT/._fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/__MACOSX/_ICONFONT/._fonts -------------------------------------------------------------------------------- /icon/linea_music_1.0/__MACOSX/_PNG64/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/__MACOSX/_PNG64/._.DS_Store -------------------------------------------------------------------------------- /icon/linea_music_1.0/__MACOSX/_SVG/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/__MACOSX/_SVG/._.DS_Store -------------------------------------------------------------------------------- /icon/linea_music_1.0/linea_music_1.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/linea_music_1.0.jpg -------------------------------------------------------------------------------- /icon/linea_music_1.0/read_me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_music_1.0/read_me.txt -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_ICONFONT/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_ICONFONT/.DS_Store -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_ICONFONT/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_ICONFONT/styles.css -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/.DS_Store -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_aries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_aries.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_cancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_cancer.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_cloud.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_drop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_drop.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_fog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_fog.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_gemini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_gemini.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_hail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_hail.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_leo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_leo.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_libra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_libra.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_moon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_moon.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_move2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_move2.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_pisces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_pisces.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_rain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_rain.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_snow.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_star.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_sun.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_sunset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_sunset.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_taurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_taurus.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_virgo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_virgo.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_wind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_wind.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_wind_E.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_wind_E.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_wind_N.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_wind_N.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_wind_S.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_wind_S.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_PNG64/weather_wind_W.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_PNG64/weather_wind_W.png -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG expanded/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG expanded/.DS_Store -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/.DS_Store -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_aquarius.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_aquarius.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_aries.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_aries.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_cancer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_cancer.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_cloud.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_cloud.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_drop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_drop.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_fog.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_fog.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_fog_sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_fog_sun.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_fullmoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_fullmoon.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_gemini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_gemini.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_hail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_hail.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_hail_sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_hail_sun.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_leo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_leo.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_libra.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_libra.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_moon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_moon.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_move2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_move2.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_newmoon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_newmoon.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_pisces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_pisces.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_rain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_rain.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_rain_sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_rain_sun.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_scorpio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_scorpio.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_snow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_snow.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_snow_sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_snow_sun.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_star.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_star.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_storm-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_storm-11.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_storm-32.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_storm-32.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_sun.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_sundown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_sundown.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_sunset.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_sunset.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_taurus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_taurus.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_tempest.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_tempest.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_virgo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_virgo.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_wind.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_wind.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_wind_E.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_wind_E.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_wind_N.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_wind_N.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_wind_NE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_wind_NE.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_wind_NW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_wind_NW.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_wind_S.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_wind_S.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_wind_SE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_wind_SE.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_wind_SW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_wind_SW.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_wind_W.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_wind_W.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_wind_sun.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_wind_sun.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/_SVG/weather_windgust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/_SVG/weather_windgust.svg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/__MACOSX/._read_me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/__MACOSX/._read_me.txt -------------------------------------------------------------------------------- /icon/linea_weather_1.0/__MACOSX/_SVG/._.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/__MACOSX/_SVG/._.DS_Store -------------------------------------------------------------------------------- /icon/linea_weather_1.0/linea_weather_1.0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/linea_weather_1.0.jpg -------------------------------------------------------------------------------- /icon/linea_weather_1.0/read_me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/icon/linea_weather_1.0/read_me.txt -------------------------------------------------------------------------------- /joke-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/joke-generator/README.md -------------------------------------------------------------------------------- /joke-generator/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/joke-generator/index.html -------------------------------------------------------------------------------- /joke-generator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/joke-generator/index.js -------------------------------------------------------------------------------- /joke-generator/res/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/joke-generator/res/demo.gif -------------------------------------------------------------------------------- /joke-generator/res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/joke-generator/res/favicon.ico -------------------------------------------------------------------------------- /joke-generator/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/joke-generator/styles.css -------------------------------------------------------------------------------- /money-manager/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/.gitignore -------------------------------------------------------------------------------- /money-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/README.md -------------------------------------------------------------------------------- /money-manager/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/package.json -------------------------------------------------------------------------------- /money-manager/project-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/project-image.jpg -------------------------------------------------------------------------------- /money-manager/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/public/favicon.ico -------------------------------------------------------------------------------- /money-manager/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/public/index.html -------------------------------------------------------------------------------- /money-manager/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/public/logo192.png -------------------------------------------------------------------------------- /money-manager/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/public/logo512.png -------------------------------------------------------------------------------- /money-manager/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/public/manifest.json -------------------------------------------------------------------------------- /money-manager/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/public/robots.txt -------------------------------------------------------------------------------- /money-manager/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/src/App.css -------------------------------------------------------------------------------- /money-manager/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/src/App.js -------------------------------------------------------------------------------- /money-manager/src/components/TabItem/TabItem.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/src/components/TabItem/TabItem.css -------------------------------------------------------------------------------- /money-manager/src/components/TabItem/TabItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/src/components/TabItem/TabItem.js -------------------------------------------------------------------------------- /money-manager/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/src/index.css -------------------------------------------------------------------------------- /money-manager/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/src/index.js -------------------------------------------------------------------------------- /money-manager/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/money-manager/yarn.lock -------------------------------------------------------------------------------- /ping-pong game/game.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ping-pong game/game.gif -------------------------------------------------------------------------------- /ping-pong game/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ping-pong game/index.html -------------------------------------------------------------------------------- /ping-pong game/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ping-pong game/index.js -------------------------------------------------------------------------------- /ping-pong game/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ping-pong game/readme.md -------------------------------------------------------------------------------- /ping-pong game/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/ping-pong game/style.css -------------------------------------------------------------------------------- /romanNumeralConverter_h2o-Noob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/romanNumeralConverter_h2o-Noob/README.md -------------------------------------------------------------------------------- /romanNumeralConverter_h2o-Noob/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/romanNumeralConverter_h2o-Noob/index.html -------------------------------------------------------------------------------- /romanNumeralConverter_h2o-Noob/romCon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/romanNumeralConverter_h2o-Noob/romCon.css -------------------------------------------------------------------------------- /romanNumeralConverter_h2o-Noob/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/romanNumeralConverter_h2o-Noob/script.js -------------------------------------------------------------------------------- /romanNumeralConverter_h2o-Noob/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tenet-Coding/Hacktoberfest-Projects/HEAD/romanNumeralConverter_h2o-Noob/style.css --------------------------------------------------------------------------------