<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Aditya Thakur</title>
    <description>The latest articles on DEV Community by Aditya Thakur (@adityathakur).</description>
    <link>https://dev.to/adityathakur</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F513123%2F2c5c0747-29b1-4934-92a7-6265581778ca.png</url>
      <title>DEV Community: Aditya Thakur</title>
      <link>https://dev.to/adityathakur</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/adityathakur"/>
    <language>en</language>
    <item>
      <title>A Comprehensive Guide to Flutter-WebRTC</title>
      <dc:creator>Aditya Thakur</dc:creator>
      <pubDate>Mon, 21 Mar 2022 11:10:08 +0000</pubDate>
      <link>https://dev.to/adityathakur/a-comprehensive-guide-to-flutter-webrtc-15nl</link>
      <guid>https://dev.to/adityathakur/a-comprehensive-guide-to-flutter-webrtc-15nl</guid>
      <description>&lt;p&gt;Through the pandemic, we saw the rise in audio/video calling apps. A lot of people wanted to communicate with their loved ones around the globe and, video conferencing apps like Zoom, Google Meet stepped in to make that possible. Twitter introduced Spaces and Discord added Stages. Even audio-only apps like Clubhouse became a rage.&lt;/p&gt;

&lt;p&gt;Naturally, developers have been asking the same question these days: &lt;em&gt;How do I establish real-time audio and video in my Flutter app?&lt;/em&gt; If you’re curious about how to build a simple app using &lt;strong&gt;Flutter WebRTC&lt;/strong&gt;, you’re in the right place. &lt;/p&gt;

&lt;p&gt;This article will discuss WebRTC is and how can it be integrated with Flutter. It will also explore the options available to you in order to scale your operations. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2hdz9nuz69ziwnfun15h.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F2hdz9nuz69ziwnfun15h.png" alt="Image description"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;WebRTC&lt;/strong&gt; enables real-time, audio-video communication between websites and devices. It is an open-source project that allows direct P2P communication without installing additional programs or plugins. It is supported by all modern browsers and can also be embedded into native applications using available libraries.&lt;/p&gt;

&lt;p&gt;To use WebRTC in Flutter, there’s a package available called the &lt;code&gt;flutter_webrtc&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Run the following command to add the package to project dependencies:&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;

flutter pub add flutter_webrtc


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;The entire process of integration with Flutter is fairly easy but not very well documented. For a detailed, step-by-step tutorial on the same, have a look at this &lt;a href="https://www.100ms.live/blog/flutter-webrtc" rel="noopener noreferrer"&gt;comprehensive guide to Flutter WebRTC.&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  WebRTC Flutter Demo
&lt;/h2&gt;

&lt;p&gt;If you follow the steps in the linked article, you’ll be able to build a simple video conferencing app with Flutter that uses WebRTC to connect two peers for video communication and audio enabled. &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;You can find the complete code &lt;a href="https://github.com/adityathakurxd/webrtc_flutter" rel="noopener noreferrer"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiidjgjv2bv7qjs37zhur.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiidjgjv2bv7qjs37zhur.png" alt="Flutter web-app demo"&gt;&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;Copy the URL and paste it into a new browser window to create two peers.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Felx4zynaynnec681ncos.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Felx4zynaynnec681ncos.png" alt="P2P Flutter WebRTC demo"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Click on the ‘&lt;strong&gt;Offer&lt;/strong&gt;’ button in window 1 to generate an offer. It will output the offer to the console accessible using developer tools on Chrome.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fozbhgfkbrmykzq5m7yva.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fozbhgfkbrmykzq5m7yva.png" alt="Sharing the offer"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Copy-paste this offer into the TextField of window 2 and click on the ‘&lt;strong&gt;Set Remote Description&lt;/strong&gt;’ button. That should set the remote description by calling the underlying function.&lt;br&gt;
Now, click on ‘&lt;strong&gt;Answer&lt;/strong&gt;’ to generate an answer and copy-paste it in the TextField of window 1.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frrbzpdcw3lptm2vecy9e.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Frrbzpdcw3lptm2vecy9e.png" alt="Sharing the answer"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Lastly, copy a candidate from window 2, paste it in the window 1 TextField, and click on the ‘&lt;strong&gt;Set Candidate&lt;/strong&gt;’ button. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxjtnbp55rfhzzj9f1tg2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fxjtnbp55rfhzzj9f1tg2.png" alt="Sharing a candidate"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This should create the WebRTC connection, and the remote video should show up as seen below: &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpm85sfqu5iuhgxgn8woj.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpm85sfqu5iuhgxgn8woj.png" alt="P2P done using WebRTC"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;And, that’s it.&lt;/strong&gt; 🎉&lt;/p&gt;

&lt;p&gt;As you can see,  the process of building up a Flutter WebRTC app may seem a little complicated, but once you get the hang of it, it’s not too difficult to accomplish. &lt;/p&gt;

</description>
      <category>flutter</category>
      <category>webrtc</category>
      <category>dart</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Add beautiful containers to your Flutter app</title>
      <dc:creator>Aditya Thakur</dc:creator>
      <pubDate>Mon, 26 Jul 2021 10:12:52 +0000</pubDate>
      <link>https://dev.to/adityathakur/add-beautiful-containers-to-your-flutter-app-3g8m</link>
      <guid>https://dev.to/adityathakur/add-beautiful-containers-to-your-flutter-app-3g8m</guid>
      <description>&lt;p&gt;&lt;strong&gt;Fancy Containers&lt;/strong&gt; package lets you add a beautiful gradient container to your Flutter app.&lt;/p&gt;

&lt;p&gt;These can be used to:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Share announcements,&lt;/li&gt;
&lt;li&gt;Showcase information,&lt;/li&gt;
&lt;li&gt;Highlight features,&lt;/li&gt;
&lt;/ul&gt;



&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;

&lt;p&gt;Add the latest version of the package to your pubspec.yaml (and run &lt;code&gt;dart pub get&lt;/code&gt;):&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight dart"&gt;&lt;code&gt;&lt;span class="nl"&gt;dependencies:&lt;/span&gt;
  &lt;span class="nl"&gt;fancy_containers:&lt;/span&gt; &lt;span class="o"&gt;^&lt;/span&gt;&lt;span class="mf"&gt;0.0&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="mi"&gt;4&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Import the package and use it in your Flutter App.
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight dart"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="s"&gt;'package:fancy_containers/fancy_containers.dart'&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Example
&lt;/h2&gt;

&lt;p&gt;There are a number of properties that you can modify:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;height&lt;/li&gt;
&lt;li&gt;width&lt;/li&gt;
&lt;li&gt;title&lt;/li&gt;
&lt;li&gt;titlecolor&lt;/li&gt;
&lt;li&gt;subtitle&lt;/li&gt;
&lt;li&gt;subtitlecolor&lt;/li&gt;
&lt;li&gt;gradient (color1 and color2)&lt;/li&gt;
&lt;li&gt;onTap (for function callback)
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight dart"&gt;&lt;code&gt;&lt;span class="nd"&gt;@override&lt;/span&gt;
  &lt;span class="n"&gt;Widget&lt;/span&gt; &lt;span class="n"&gt;build&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;BuildContext&lt;/span&gt; &lt;span class="n"&gt;context&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="n"&gt;Scaffold&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
      &lt;span class="nl"&gt;body:&lt;/span&gt; &lt;span class="n"&gt;Center&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
        &lt;span class="nl"&gt;child:&lt;/span&gt; &lt;span class="n"&gt;FancyContainer&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;
          &lt;span class="nl"&gt;onTap:&lt;/span&gt; &lt;span class="p"&gt;(){&lt;/span&gt;
            &lt;span class="n"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"Hello World"&lt;/span&gt;&lt;span class="p"&gt;);&lt;/span&gt;
          &lt;span class="p"&gt;},&lt;/span&gt;
          &lt;span class="nl"&gt;color1:&lt;/span&gt; &lt;span class="n"&gt;Colors&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;lightGreenAccent&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
          &lt;span class="nl"&gt;color2:&lt;/span&gt; &lt;span class="n"&gt;Colors&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;lightBlue&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
          &lt;span class="nl"&gt;title:&lt;/span&gt; &lt;span class="s"&gt;'Hello World'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
          &lt;span class="nl"&gt;textcolor:&lt;/span&gt; &lt;span class="n"&gt;Colors&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;white&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
          &lt;span class="nl"&gt;subtitle:&lt;/span&gt; &lt;span class="s"&gt;'This is a new package'&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
          &lt;span class="nl"&gt;subtitlecolor:&lt;/span&gt; &lt;span class="n"&gt;Colors&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;white&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;
        &lt;span class="p"&gt;),&lt;/span&gt;
      &lt;span class="p"&gt;),&lt;/span&gt;
    &lt;span class="p"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Output
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj28cp45jyf84imhjig6k.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fj28cp45jyf84imhjig6k.jpeg" alt="FancyContainers Output" width="800" height="796"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Find the package on pub.dev &lt;a href="https://pub.dev/packages/fancy_containers"&gt;here&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>flutter</category>
      <category>dart</category>
      <category>programming</category>
    </item>
    <item>
      <title>First internship as a Flutter Developer</title>
      <dc:creator>Aditya Thakur</dc:creator>
      <pubDate>Tue, 20 Jul 2021 07:17:59 +0000</pubDate>
      <link>https://dev.to/adityathakur/first-internship-as-a-flutter-developer-48do</link>
      <guid>https://dev.to/adityathakur/first-internship-as-a-flutter-developer-48do</guid>
      <description>&lt;p&gt;I had only recently followed the company. It was an ed-tech startup. In a day or two, the co-founder put out a post mentioning that they were hiring for multiple roles. And, one of the roles was that of a Flutter Developer.&lt;/p&gt;

&lt;p&gt;I had never interned before. I hadn't even completed the course that I had taken up on Flutter. My knowledge was limited to the front end and in that too, I could only make simple designs. I was just getting started.&lt;/p&gt;

&lt;p&gt;The thought that it might be too early to apply kept echoing in my head. Two things could happen, I could be rejected bad, maybe even insulted but at the same time, there was a chance that they select me and I get to test out my skills, learn and level up. Thank god it was the latter!&lt;/p&gt;

&lt;p&gt;I commented like a devoted LinkedIn user, 'INTERESTED' under the post. Two days later, I was on a call with the co-founder. They even had me talk to the guy managing their app, who was to be my coordinator later. The guy told me how the co-founder had loved my profile although he in his heart knew, I had very limited knowledge of Flutter.&lt;/p&gt;

&lt;p&gt;It is important to point, I had optimized my profile with whatever little I could. Since I was only at the start of my second year then, I had highlighted my experience from the school itself. Not particularly in Flutter but in soft skills like leadership, communication, etc.&lt;/p&gt;

&lt;p&gt;I had also put up a video demonstration of two projects that I had done then. One was a simple portfolio app (with an avatar image and my name under it) and the second was a dice app. Both really really basic but anyway got me the offer letter in a week.&lt;/p&gt;

&lt;p&gt;The offer was unpaid. It was originally a 2-month internship, but I knew I wouldn't do something for so long for free. I had also spoken to my friends who had previously worked as interns in different sectors. The experience of a technical internship that I needed could be done in a month. I negotiated the same with the employer and shortened the period down to a month.&lt;/p&gt;

&lt;p&gt;However much I may say such internships are bad, the first ever that I did was unpaid. I believe I lacked experience and guidance back then. Today, I am at a place with multiple offers and ongoing projects. I have tried to help Flutter developers I know with offers and also built up a community to guide anyone who is just getting started.&lt;/p&gt;

&lt;p&gt;We are around a 150 developer community on Discord, that you can join in using the &lt;a href="https://linktr.ee/flutterdev"&gt;link.&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I post internships that I come across, resources to learn Flutter, Data Science, Python, etc from, offers, upgrades, and more! Thank you for reading :)&lt;/p&gt;

</description>
      <category>flutter</category>
      <category>internship</category>
      <category>devjournal</category>
      <category>experience</category>
    </item>
    <item>
      <title>Open Source projects in Flutter</title>
      <dc:creator>Aditya Thakur</dc:creator>
      <pubDate>Mon, 05 Jul 2021 17:09:55 +0000</pubDate>
      <link>https://dev.to/adityathakur/open-source-projects-in-flutter-4gpe</link>
      <guid>https://dev.to/adityathakur/open-source-projects-in-flutter-4gpe</guid>
      <description>&lt;h1&gt;
  
  
  What are some open source projects to contribute to in Flutter?
&lt;/h1&gt;

&lt;p&gt;Open Source is for everyone! But, starting out you must be at a loss of projects to contribute to. However good the GitHub search might be, it is difficult to find good projects that are beginner-friendly with community support.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Fear no more.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here, I have listed some of the projects from a number of open-source programs that you can contribute to!&lt;/p&gt;

&lt;h2&gt;
  
  
  Upcharika
&lt;/h2&gt;

&lt;p&gt;A unique flutter application aimed at helping people getting their vitals using Photoplethysmography and Computer Vision.&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/smaranjitghose" rel="noopener noreferrer"&gt;
        smaranjitghose
      &lt;/a&gt; / &lt;a href="https://github.com/smaranjitghose/Upcharika" rel="noopener noreferrer"&gt;
        Upcharika
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      A unique flutter application aimed at helping people getting their vitals using Photoplethysmography and Computer Vision
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer" href="https://github.com/smaranjitghose/Upcharika./readme_assets/banner.jpg"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fsmaranjitghose%2FUpcharika.%2Freadme_assets%2Fbanner.jpg" alt="Banner" width="540" height="360"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;A unique flutter application aimed at helping people getting their vitals using Photoplethysmography and Computer Vision&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Current Goals:&lt;/h2&gt;
&lt;/div&gt;
&lt;ul class="contains-task-list"&gt;
&lt;li class="task-list-item"&gt;
 Use the camera and flash sensors to calculate Heart Rate&lt;/li&gt;
&lt;li class="task-list-item"&gt;
 Use the camera and flash sensors to calcuate SP02&lt;/li&gt;
&lt;li class="task-list-item"&gt;
 Make a dashboard for storing periodic readings&lt;/li&gt;
&lt;li class="task-list-item"&gt;
 User Profile&lt;/li&gt;
&lt;li class="task-list-item"&gt;
 Login Page&lt;/li&gt;
&lt;li class="task-list-item"&gt;
 Sign Up Page&lt;/li&gt;
&lt;li class="task-list-item"&gt;
 Splash Screen&lt;/li&gt;
&lt;li class="task-list-item"&gt;
 Firebase/Supabase Intergration for Authentication&lt;/li&gt;
&lt;li class="task-list-item"&gt;
 Generate Reports&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;Our hard-working Project Maintainers👨‍🏫:&lt;/h3&gt;
&lt;/div&gt;
&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;&lt;a rel="noopener noreferrer nofollow" href="https://avatars.githubusercontent.com/u/46641503?v=4"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Favatars.githubusercontent.com%2Fu%2F46641503%3Fv%3D4" alt=""&gt;&lt;/a&gt;&lt;/th&gt;
&lt;th&gt;&lt;a rel="noopener noreferrer nofollow" href="https://avatars.githubusercontent.com/u/40017559?v=4"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Favatars.githubusercontent.com%2Fu%2F40017559%3Fv%3D4" alt=""&gt;&lt;/a&gt;&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;a href="https://github.com/smaranjitghose" rel="noopener noreferrer"&gt;Smaranjit Ghose&lt;/a&gt;&lt;/td&gt;
&lt;td&gt;&lt;a href="https://github.com/anushbhatia" rel="noopener noreferrer"&gt;Anush Bhatia&lt;/a&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;
&lt;div class="markdown-heading"&gt;
&lt;h4 class="heading-element"&gt;Our valuable Contributors👩‍💻👨‍💻 :&lt;/h4&gt;
&lt;/div&gt;
&lt;a href="https://github.com/smaranjitghose/Upcharika/graphs/contributors" rel="noopener noreferrer"&gt;
  &lt;img src="https://camo.githubusercontent.com/4c856b873282b1b0f8aa6ce22190a441ad4f92409ef502f1287c91deb1a73c95/68747470733a2f2f636f6e7472696275746f72732d696d672e7765622e6170702f696d6167653f7265706f3d736d6172616e6a697467686f73652f557063686172696b61"&gt;
&lt;/a&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Documents related to the project:&lt;/h2&gt;

&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/smaranjitghose/Upcharika./LICENSE" rel="noopener noreferrer"&gt;LICENSE&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/smaranjitghose/Upcharika./CODE_OF_CONDUCT.md" rel="noopener noreferrer"&gt;CODE OF CONDUCT&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/smaranjitghose/Upcharika./CONTRIBUTING.MD" rel="noopener noreferrer"&gt;CONTRIBUTION GUIDELINES&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/smaranjitghose/Upcharika./CHANGELOG.md" rel="noopener noreferrer"&gt;CHANGELOG&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;References:&lt;/h2&gt;

&lt;/div&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;div class="snippet-clipboard-content notranslate position-relative overflow-auto"&gt;&lt;pre class="notranslate"&gt;&lt;code&gt; Kanva, A.K., Sharma, C.J. and Deb, S., 2014, January. Determination of SpO 2 and heart-rate using smartphone camera. In Proceedings of The 2014 International Conference on Control, Instrumentation, Energy and Communication (CIEC) (pp. 237-241). IEEE
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;div class="snippet-clipboard-content notranslate position-relative overflow-auto"&gt;
&lt;pre class="notranslate"&gt;&lt;code&gt;   Bolkhovsky, J.B., Scully, C.G. and Chon, K.H., 2012, August. Statistical analysis of heart rate and heart rate variability monitoring through the use of smart phone cameras. In 2012 Annual International Conference&lt;/code&gt;&lt;/pre&gt;…&lt;/div&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/smaranjitghose/Upcharika" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;


&lt;h2&gt;
  
  
  SheHeroes
&lt;/h2&gt;

&lt;p&gt;A Women And Child Safety App.&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/shagun25" rel="noopener noreferrer"&gt;
        shagun25
      &lt;/a&gt; / &lt;a href="https://github.com/shagun25/SheHeroes" rel="noopener noreferrer"&gt;
        SheHeroes
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      SheHeroes- A Women And Child Safety App
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;&lt;a rel="noopener noreferrer nofollow" href="https://user-images.githubusercontent.com/56549294/108184515-5054c100-7131-11eb-83f8-fba6530601d9.png"&gt;&lt;img width="50%" height="50%" alt="SheHeroes" src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fuser-images.githubusercontent.com%2F56549294%2F108184515-5054c100-7131-11eb-83f8-fba6530601d9.png"&gt;&lt;/a&gt;&lt;/h1&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/2774b2f5e1cadf6e26da2df841b58286ca210c7cf0c5a5c31d7a5805ee0f7382/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f73686167756e32352f5368654865726f6573"&gt;&lt;img src="https://camo.githubusercontent.com/2774b2f5e1cadf6e26da2df841b58286ca210c7cf0c5a5c31d7a5805ee0f7382/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f73686167756e32352f5368654865726f6573" alt="Issues"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/7aa1a170dfbada7eaac924a6f5474c1e0fbc5995a0428e968638b9afa7f54cd0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f73686167756e32352f5368654865726f6573"&gt;&lt;img src="https://camo.githubusercontent.com/7aa1a170dfbada7eaac924a6f5474c1e0fbc5995a0428e968638b9afa7f54cd0/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f73686167756e32352f5368654865726f6573" alt="Pull Requests"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/b7ebb3d3885d5c37e8fb89c7d4a8fb0d7fda9618e4257fc7ce3386500c9ddec7/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f73686167756e32352f5368654865726f6573"&gt;&lt;img src="https://camo.githubusercontent.com/b7ebb3d3885d5c37e8fb89c7d4a8fb0d7fda9618e4257fc7ce3386500c9ddec7/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f73686167756e32352f5368654865726f6573" alt="Forks"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/f5340b88c2dfc316d1d884a737fbf8a4f9a93e68377aa23e3f0f588fc1ee0890/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f73686167756e32352f5368654865726f6573"&gt;&lt;img src="https://camo.githubusercontent.com/f5340b88c2dfc316d1d884a737fbf8a4f9a93e68377aa23e3f0f588fc1ee0890/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f73686167756e32352f5368654865726f6573" alt="Stars"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/567679351b1b2c724ce67a3dc7dc9ee6446a3c78a867acce399f1faaf937d072/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7265706f2d73697a652f73686167756e32352f5368654865726f65732e7376673f6c6162656c3d5265706f25323073697a65267374796c653d666c61742d737175617265"&gt;&lt;img src="https://camo.githubusercontent.com/567679351b1b2c724ce67a3dc7dc9ee6446a3c78a867acce399f1faaf937d072/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7265706f2d73697a652f73686167756e32352f5368654865726f65732e7376673f6c6162656c3d5265706f25323073697a65267374796c653d666c61742d737175617265" alt=""&gt;&lt;/a&gt; &lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;🅂🄷🄴🄷🄴🅁🄾🄴🅂 - Women Safety App&lt;/h1&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a href="https://forthebadge.com" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/c3547128fbe25ac91a64f0a4398c580576bb20fe5a106131d57f9eaf819984a7/68747470733a2f2f666f7274686562616467652e636f6d2f696d616765732f6261646765732f6275696c742d62792d646576656c6f706572732e737667" alt="forthebadge"&gt;&lt;/a&gt;
&lt;a href="https://forthebadge.com" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/626238757866864b3d04ed0c9c43cfc9f8c5983b3c1f085362967381d24761e4/68747470733a2f2f666f7274686562616467652e636f6d2f696d616765732f6261646765732f6275696c742d776974682d6c6f76652e737667" alt="forthebadge"&gt;&lt;/a&gt;
&lt;a href="https://forthebadge.com" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/164c3a5022547a644063091e3501dc69e412b3b9b4696037b0cd981032d0daff/68747470733a2f2f666f7274686562616467652e636f6d2f696d616765732f6261646765732f6275696c742d776974682d737761672e737667" alt="forthebadge"&gt;&lt;/a&gt;
&lt;a href="https://forthebadge.com" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/e56d640496d1c4c554557896a79564bff181c97ff48d9972c9928cee74771780/68747470733a2f2f666f7274686562616467652e636f6d2f696d616765732f6261646765732f666f722d796f752e737667" alt="forthebadge"&gt;&lt;/a&gt;
&lt;a href="https://forthebadge.com" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/7415e36372b7098f19597cfd197c440948a9d9696a1ecbe956eae7579137c3f9/68747470733a2f2f666f7274686562616467652e636f6d2f696d616765732f6261646765732f6f70656e2d736f757263652e737667" alt="forthebadge"&gt;&lt;/a&gt;
&lt;a href="https://forthebadge.com" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/039b7da265126d9e7897313dd8456650a0442306e36fcecd522e53ac4d8a66c2/68747470733a2f2f666f7274686562616467652e636f6d2f696d616765732f6261646765732f636865636b2d69742d6f75742e737667" alt="forthebadge"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 id="user-content-content" class="heading-element"&gt; 🗂 CONTENT:&lt;/h2&gt;

&lt;/div&gt;
&lt;div class="highlight highlight-source-diff notranslate position-relative overflow-auto js-code-highlight"&gt;
&lt;pre&gt;&lt;span class="pl-md"&gt;&lt;span class="pl-md"&gt;-&lt;/span&gt; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - &lt;/span&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;📌&lt;/code&gt; &lt;a href="https://github.com/shagun25/SheHeroes#CrossWinterOfCode21" rel="noopener noreferrer"&gt;Cross WinterOfCode 21&lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;📌&lt;/code&gt; &lt;a href="https://github.com/shagun25/SheHeroes#Inspiration" rel="noopener noreferrer"&gt;Inspiration&lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;📌&lt;/code&gt; &lt;a href="https://github.com/shagun25/SheHeroes#TechStack" rel="noopener noreferrer"&gt;Tech Stack&lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;📌&lt;/code&gt; &lt;a href="https://github.com/shagun25/SheHeroes#Features" rel="noopener noreferrer"&gt;Features&lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;📌&lt;/code&gt; &lt;a href="https://github.com/shagun25/SheHeroes#Howtogetstarted?" rel="noopener noreferrer"&gt;How to get started&lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;📌&lt;/code&gt; &lt;a href="https://github.com/shagun25/SheHeroes#Stepstofollow" rel="noopener noreferrer"&gt;Steps to follow &lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;📌&lt;/code&gt; &lt;a href="https://github.com/shagun25/SheHeroes#DevelopedBy" rel="noopener noreferrer"&gt;Developed By&lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;📌&lt;/code&gt; &lt;a href="https://github.com/shagun25/SheHeroes#ScreenShots" rel="noopener noreferrer"&gt;ScreenShots&lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;code&gt;📌&lt;/code&gt; &lt;a href="https://github.com/shagun25/SheHeroes#FeaturesWeDemand" rel="noopener noreferrer"&gt;Features We Demand&lt;/a&gt;&lt;br&gt;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;/blockquote&gt;
&lt;div class="highlight highlight-source-diff notranslate position-relative overflow-auto js-code-highlight"&gt;
&lt;pre&gt;&lt;span class="pl-md"&gt;&lt;span class="pl-md"&gt;-&lt;/span&gt; - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - &lt;/span&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 id="user-content-inspiration" class="heading-element"&gt; 🏷️ Inspiration&lt;/h2&gt;…&lt;/div&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/shagun25/SheHeroes" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;


&lt;h2&gt;
  
  
  Relic Bazaar
&lt;/h2&gt;

&lt;p&gt;A Retro Theme-based e-commerce app for antiques.&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/himanshusharma89" rel="noopener noreferrer"&gt;
        himanshusharma89
      &lt;/a&gt; / &lt;a href="https://github.com/himanshusharma89/relic_bazaar" rel="noopener noreferrer"&gt;
        relic_bazaar
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      A Retro Theme-based e-commerce app for antiques. #Hack20
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer" href="https://github.com/himanshusharma89/relic_bazaar/blob/master/images/promo.png"&gt;&lt;img width="70%" src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fhimanshusharma89%2Frelic_bazaar%2Fraw%2Fmaster%2Fimages%2Fpromo.png"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/b1e8451ced5fcb89e4c670b8c7e4197fa6735fb424713f16f1cf822decd815af/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f68696d616e736875736861726d6138392f72656c69635f62617a616172"&gt;&lt;img src="https://camo.githubusercontent.com/b1e8451ced5fcb89e4c670b8c7e4197fa6735fb424713f16f1cf822decd815af/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f68696d616e736875736861726d6138392f72656c69635f62617a616172" alt="Forks"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/1f9c424b0b4d94a97b55b62dd4d818d0560740977d91997582e98bfa2009819d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f68696d616e736875736861726d6138392f72656c69635f62617a616172"&gt;&lt;img src="https://camo.githubusercontent.com/1f9c424b0b4d94a97b55b62dd4d818d0560740977d91997582e98bfa2009819d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f68696d616e736875736861726d6138392f72656c69635f62617a616172" alt="Stars"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/07877c90f625aa23c76e8af982c895be491a007f09e021ee7e2ca68afb24e656/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f68696d616e736875736861726d6138392f72656c69635f62617a616172"&gt;&lt;img src="https://camo.githubusercontent.com/07877c90f625aa23c76e8af982c895be491a007f09e021ee7e2ca68afb24e656/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f68696d616e736875736861726d6138392f72656c69635f62617a616172" alt="Issues"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/9ef475f4cd34f6602de3b1c74873978d569c2b97899979eb3f7fe9131b5528f6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f68696d616e736875736861726d6138392f72656c69635f62617a6161723f"&gt;&lt;img src="https://camo.githubusercontent.com/9ef475f4cd34f6602de3b1c74873978d569c2b97899979eb3f7fe9131b5528f6/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f68696d616e736875736861726d6138392f72656c69635f62617a6161723f" alt="Pull Requests"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/div&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;&lt;b&gt;Motivation💭💭 &lt;/b&gt;&lt;/h1&gt;
&lt;/div&gt;
&lt;p&gt;With the boons of internet🌐 spreading worlwide over the last two decades, e-commerce has evolved to be one of the largest industries💹!.&lt;/p&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/efb7a13f88b5d5da3ab39cabb11ff8dd5fa437b3e3d2500a5d249cdcdb1c3b5d/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f7854307865507947734b706c4f4b356448472f67697068792e676966"&gt;&lt;img width="50%" src="https://camo.githubusercontent.com/efb7a13f88b5d5da3ab39cabb11ff8dd5fa437b3e3d2500a5d249cdcdb1c3b5d/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f7854307865507947734b706c4f4b356448472f67697068792e676966"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;With the passage of time, platforms like Amazon, E-Bay, Flipkart, Myntra have become the modern supermarkerts for us.&lt;/p&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/bd7169399bfd82fb5c0b8ead0fe3babd5662fb95d13bf5f3d5ba261006a1afab/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f78554f774734574c68796257536b755665452f67697068792e676966"&gt;&lt;img width="40%" src="https://camo.githubusercontent.com/bd7169399bfd82fb5c0b8ead0fe3babd5662fb95d13bf5f3d5ba261006a1afab/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f78554f774734574c68796257536b755665452f67697068792e676966"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;From our fashionable clothes👗, shoes👟, grocery🥒, items of daily needs to mobile phones📱 we are accustomed to buying almost everything online. Even our food!🎂. Features like flexible options of payment, tons of choices to select from, assured delivery, as well as great customer support, have paved the way for the notion.&lt;/p&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/fa104f1d60bb3c1008b7c69b8590b0edd68b21bb83d9734e54fa290ce0dfecd0/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f785439445077705a6b746d6241424f3937472f67697068792e676966"&gt;&lt;img width="50%" src="https://camo.githubusercontent.com/fa104f1d60bb3c1008b7c69b8590b0edd68b21bb83d9734e54fa290ce0dfecd0/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f785439445077705a6b746d6241424f3937472f67697068792e676966"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;However, we found there's something that is left behind on the e-commerce wave.&lt;/p&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/e5d175c85b5886856e139a43015a592edcf09d8c451c3449820fe17d34fae74d/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f32414e3767566331417a37706d646e4663332f67697068792e676966"&gt;&lt;img width="40%" src="https://camo.githubusercontent.com/e5d175c85b5886856e139a43015a592edcf09d8c451c3449820fe17d34fae74d/68747470733a2f2f6d656469612e67697068792e636f6d2f6d656469612f32414e3767566331417a37706d646e4663332f67697068792e676966"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;The Vintage Products&lt;/strong&gt;...Yes, those items of immense cultural significance or historical importance. Maybe those coins from pre-independent India, that chair from the royal family, or perhaps the autograph or souvenirs your family members might have got from Mother Teresa. Trading with such items is…&lt;/p&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/himanshusharma89/relic_bazaar" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;


&lt;h2&gt;
  
  
  DocLense
&lt;/h2&gt;

&lt;p&gt;An open-source document scanner!&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/smaranjitghose" rel="noopener noreferrer"&gt;
        smaranjitghose
      &lt;/a&gt; / &lt;a href="https://github.com/smaranjitghose/DocLense" rel="noopener noreferrer"&gt;
        DocLense
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      An open-source document scanner!
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer" href="https://github.com/smaranjitghose/DocLense./readme_assets/doclense_banner.png"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fsmaranjitghose%2FDocLense.%2Freadme_assets%2Fdoclense_banner.png" alt="DocLense"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/5b87b6bbf3305832b71556426be9744c2e2c392144ea577a3c9e2f8178d88441/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f736d6172616e6a697467686f73652f446f634c656e7365"&gt;&lt;img src="https://camo.githubusercontent.com/5b87b6bbf3305832b71556426be9744c2e2c392144ea577a3c9e2f8178d88441/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f736d6172616e6a697467686f73652f446f634c656e7365" alt="Issues"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/1b802d999ae9a8c663022b8cd9d5c2803c85e9fb7bf5735b0ab03a842b29c5f3/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f736d6172616e6a697467686f73652f446f634c656e73653f"&gt;&lt;img src="https://camo.githubusercontent.com/1b802d999ae9a8c663022b8cd9d5c2803c85e9fb7bf5735b0ab03a842b29c5f3/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f736d6172616e6a697467686f73652f446f634c656e73653f" alt="Pull Requests"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/079ab57bdb10464ae7dccbd487d1a381c1bebc6390b074703cee3a61fd42c30d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f736d6172616e6a697467686f73652f446f634c656e7365"&gt;&lt;img src="https://camo.githubusercontent.com/079ab57bdb10464ae7dccbd487d1a381c1bebc6390b074703cee3a61fd42c30d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f736d6172616e6a697467686f73652f446f634c656e7365" alt="Forks"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/3f7f93f70999e89e20e66cc7da74467e4428b9c1fdb58fbe69312fc92476bc62/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f736d6172616e6a697467686f73652f446f634c656e7365"&gt;&lt;img src="https://camo.githubusercontent.com/3f7f93f70999e89e20e66cc7da74467e4428b9c1fdb58fbe69312fc92476bc62/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f736d6172616e6a697467686f73652f446f634c656e7365" alt="Stars"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/9195a3f9057175054162348057ca0eb5aa16876f5181a311b66eeae24b05ee2a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f736d6172616e6a697467686f73652f446f634c656e7365"&gt;&lt;img src="https://camo.githubusercontent.com/9195a3f9057175054162348057ca0eb5aa16876f5181a311b66eeae24b05ee2a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f736d6172616e6a697467686f73652f446f634c656e7365" alt="License"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div&gt;&lt;a href="https://play.google.com/store/apps/details?id=com.anushbhatia.doclense" rel="nofollow noopener noreferrer"&gt;&lt;img alt="Get it on Google Play" src="https://camo.githubusercontent.com/1ddf90e524a4bfe8b77f9a6902d54fc708380389b7e0d7f9ad29196a799e77db/68747470733a2f2f706c61792e676f6f676c652e636f6d2f696e746c2f656e5f75732f6261646765732f696d616765732f67656e657269632f656e2d706c61792d62616467652e706e67" height="70px"&gt;&lt;/a&gt;&lt;/div&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Features🔬 :&lt;/h2&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;Scan your documents with ease!&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Numerous choices of filters to choose from&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Auto-adjust size and focus on text&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Save in multiple formats&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Share as consolidated document across multiple platforms&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Scan a variety of Docs&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Options to customize the size of the scanned pages (Crop)&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Apply different types of filter&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Download/Export in .pdf&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Rename the documents&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;div&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;📱App Screens📱&lt;/h2&gt;
&lt;/div&gt;
&lt;p&gt;
  &lt;a rel="noopener noreferrer" href="https://github.com/smaranjitghose/DocLenseassets/appMockups/FirstFourScreens.png"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fsmaranjitghose%2FDocLenseassets%2FappMockups%2FFirstFourScreens.png" width="400"&gt;&lt;/a&gt;
  &lt;a rel="noopener noreferrer" href="https://github.com/smaranjitghose/DocLenseassets/appMockups/RestFourScreens.png"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fsmaranjitghose%2FDocLenseassets%2FappMockups%2FRestFourScreens.png" width="400"&gt;&lt;/a&gt; 
&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;📷App Mock-ups📷&lt;/h2&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a rel="noopener noreferrer" href="https://github.com/smaranjitghose/DocLenseassets/appMockups/homeScreen-mainDrawer-settings-aboutApp-reviewDialogue.png"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fsmaranjitghose%2FDocLenseassets%2FappMockups%2FhomeScreen-mainDrawer-settings-aboutApp-reviewDialogue.png"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a rel="noopener noreferrer" href="https://github.com/smaranjitghose/DocLenseassets/appMockups/cropScreen-filterScreen-filterView-multiSelectScreen-pdfNameScreen.png"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fsmaranjitghose%2FDocLenseassets%2FappMockups%2FcropScreen-filterScreen-filterView-multiSelectScreen-pdfNameScreen.png"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;🎥App Demo🎥&lt;/h2&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a rel="noopener noreferrer" href="https://github.com/smaranjitghose/DocLenseassets/appMockups/AppWorking.gif"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fsmaranjitghose%2FDocLenseassets%2FappMockups%2FAppWorking.gif" height="500px"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;
&lt;/div&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Contribution Guidelines🏗&lt;/h2&gt;

&lt;/div&gt;

&lt;p&gt;Are we missing any of your favorite features, which you think you can add to it❓ We invite you to contribute to this project and make it better?
To start contributing, follow the below guidelines:&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;1.&lt;/strong&gt; Fork &lt;a href="https://github.com/smaranjitghose/DocLense" rel="noopener noreferrer"&gt;this&lt;/a&gt; repository.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;2.&lt;/strong&gt; Clone your forked copy of the project.&lt;/p&gt;
&lt;div class="snippet-clipboard-content notranslate position-relative overflow-auto"&gt;&lt;pre class="notranslate"&gt;&lt;code&gt;git clone --depth 1 https://github.com/&amp;lt;your_user_name&amp;gt;/DocLense.git
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer" href="https://github.com/smaranjitghose/DocLense./readme_assets/CloneRepo.png"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fsmaranjitghose%2FDocLense.%2Freadme_assets%2FCloneRepo.png" width="500"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;3.&lt;/strong&gt; Navigate to the project directory 📁 .&lt;/p&gt;
&lt;div class="snippet-clipboard-content notranslate position-relative overflow-auto"&gt;&lt;pre class="notranslate"&gt;&lt;code&gt;cd DocLense
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;4.&lt;/strong&gt; Add a reference(remote) to the original repository.&lt;/p&gt;
&lt;div class="snippet-clipboard-content notranslate position-relative overflow-auto"&gt;&lt;pre class="notranslate"&gt;&lt;code&gt;git remote add upstream https://github.com/smaranjitghose/DocLense.git
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;&lt;strong&gt;5.&lt;/strong&gt; Check the remotes for this repository.&lt;/p&gt;
&lt;div class="snippet-clipboard-content notranslate position-relative overflow-auto"&gt;&lt;pre class="notranslate"&gt;&lt;code&gt;git remote -v
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;…&lt;/p&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/smaranjitghose/DocLense" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;


&lt;h2&gt;
  
  
  Nutrihelp
&lt;/h2&gt;

&lt;p&gt;An android application to predict risks of getting Diabetes like major health issues.&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/Dragsters" rel="noopener noreferrer"&gt;
        Dragsters
      &lt;/a&gt; / &lt;a href="https://github.com/Dragsters/Nutrihelp" rel="noopener noreferrer"&gt;
        Nutrihelp
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      An android application to predict risks of getting Diabetes like major health issues.
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;p&gt;
&lt;a href="https://github.com/Dragsters/Nutrihelp" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/c38ab943d6e11e65d6029e36a42b91fb702e2ed3b3793e24578c31c8f1a9c473/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4f70656e253230536f757263652d2546302539462541342538442d477265656e"&gt;&lt;/a&gt;
&lt;a href="https://github.com/Dragsters/Nutrihelp" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/c930ae0a1076ca76016dea3b4667fdfec57aeb72257d604230780b7f10525c89/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4275696c7425323062792d646576656c6f706572732532302533432532462533452d303035396233"&gt;&lt;/a&gt;
&lt;a href="https://github.com/Dragsters/Nutrihelp" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/afb7b750ab2d02202744d90b26d6104d4de42aeb1a044196372edadcd4b4fd0c/68747470733a2f2f696d672e736869656c64732e696f2f7374617469632f76312e7376673f6c6162656c3d436f6e747269627574696f6e73266d6573736167653d57656c636f6d6526636f6c6f723d79656c6c6f77"&gt;&lt;/a&gt;
&lt;a href="https://github.com/Dragsters" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/ad7590ce801cb6ffeb48c2fb17b698bc2f7a361d1436651235391e7b0327623b/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6d61696e74656e616e63652d7965732d627269676874677265656e"&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;
&lt;a href="https://github.com/Dragsters/Nutrihelp/blob/main/LICENSE" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/ebdb5f232ff4809c50813b2964d80951acd5531d5b5e523bb720258d13a3b667/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f4472616773746572732f4e7574726968656c703f636f6c6f723d627269676874677265656e"&gt;&lt;/a&gt;
&lt;a href="https://github.com/Dragsters/Nutrihelp/stargazers" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/67134c02dc608310c5b6fb7babc7457c1f24eb6d63705b69e80894a990fe9f37/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f4472616773746572732f4e7574726968656c703f636f6c6f723d303035396233"&gt;&lt;/a&gt;
&lt;a href="https://github.com/Dragsters/Nutrihelp/network/members" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/e68c92c72d1d4066d550bb638dffd4b17abbaaaf149e1e6daf7eaac577563b0d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f4472616773746572732f4e7574726968656c703f636f6c6f723d79656c6c6f77"&gt;&lt;/a&gt;
&lt;a href="https://github.com/Dragsters/Nutrihelp/graphs/contributors" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/f0a28ddb284051ac317b3c4ecf80e94af36826c54ae48deceb9b35320d5175c5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f636f6e7472696275746f72732f4472616773746572732f4e7574726968656c703f636f6c6f723d627269676874677265656e"&gt;&lt;/a&gt;
&lt;a href="https://github.com/Dragsters/Nutrihelp/issues" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/24df04295fd72df9ccd08fdfcf3f6c643995aada446837c437b14ab33a2efe5a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f4472616773746572732f4e7574726968656c703f636f6c6f723d303035396233"&gt;&lt;/a&gt;
&lt;a href="https://github.com/Dragsters/Nutrihelp/issues?q=is%3Aissue+is%3Aclosed" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/afc053b90216e646f787ead7e1bfe773ac57bf3912f25491ee5325de09e31f7b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d636c6f7365642d7261772f4472616773746572732f4e7574726968656c703f636f6c6f723d79656c6c6f77"&gt;&lt;/a&gt;
&lt;a href="https://github.com/Dragsters/Nutrihelp/pulls" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/feeeb2ab67d7c0dfd4a783c76e982039ee27cbc98d2bcbd08d88fc21f6db5584/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f4472616773746572732f4e7574726968656c703f636f6c6f723d627269676874677265656e"&gt;&lt;/a&gt;
&lt;a href="https://github.com/Dragsters/Nutrihelp/issues?q=is%3Apr+is%3Aclosed" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/e5ccf04a1b3854cc0f6f98d6e81bf7dac0c90067742cde1fecfb8ffe202eaebd/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722d636c6f7365642d7261772f4472616773746572732f4e7574726968656c703f636f6c6f723d303035396233"&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;Nutrihelp&lt;/h1&gt;
&lt;/div&gt;

&lt;p&gt;An android application where you can get your personalized nutritional diet plan and health checkup recommendations using ML predictions&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;🌟 About&lt;/h2&gt;

&lt;/div&gt;

&lt;p&gt;An app for all those who care about their health.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Track current diet plan&lt;/li&gt;
&lt;li&gt;Get a personalized diet plan.&lt;/li&gt;
&lt;li&gt;Predict chances of critical health issues like Heart attack, Diabetes, Cancer, etc.&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Tech Used&lt;/h2&gt;

&lt;/div&gt;

&lt;p&gt;&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;br&gt;
&lt;thead&gt;
&lt;br&gt;
&lt;tr&gt;
&lt;br&gt;
&lt;th&gt;Frontend&lt;/th&gt;
&lt;br&gt;
&lt;th&gt;Flutter&lt;/th&gt;
&lt;br&gt;
&lt;/tr&gt;
&lt;br&gt;
&lt;/thead&gt;
&lt;br&gt;
&lt;tbody&gt;
&lt;br&gt;
&lt;tr&gt;
&lt;br&gt;
&lt;td&gt;Backend&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;Flask (python)&lt;/td&gt;
&lt;br&gt;
&lt;/tr&gt;
&lt;br&gt;
&lt;tr&gt;
&lt;br&gt;
&lt;td&gt;Database&lt;/td&gt;
&lt;br&gt;
&lt;td&gt;MongoDB&lt;/td&gt;
&lt;br&gt;
&lt;/tr&gt;
&lt;br&gt;
&lt;/tbody&gt;
&lt;br&gt;
&lt;/table&gt;&lt;/div&gt;&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Project Structure&lt;/h2&gt;

&lt;/div&gt;

&lt;p&gt;
     __ Nutrihelp &lt;br&gt;
   |__ client (contains flutter app)&lt;br&gt;
   |__ server (contains flask backend)
&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;💥 A guide for Contribution&lt;/h2&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="http://makeapullrequest.com" rel="nofollow noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/88482ebfc5e3e4f2d667148ab6a3eb55948789f1dba71dfa0eb2e05afe02958c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5052732d77656c636f6d652d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265" alt="PRs Welcome"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Fork the repository&lt;/li&gt;
&lt;li&gt;Take a look at the Existing &lt;a href="https://github.com/Dragsters/Nutrihelp/issues" rel="noopener noreferrer"&gt;Issues&lt;/a&gt; or create your own Issues!&lt;/li&gt;
&lt;li&gt;Wait for the Issue to be assigned to you after which you can start working on it.&lt;/li&gt;
&lt;li&gt;Create a Branch with the name of Issue that you are working upon.&lt;/li&gt;
&lt;li&gt;Switch to that branch and start writing your code.&lt;/li&gt;
&lt;li&gt;Commit and push your changes&lt;/li&gt;
&lt;li&gt;Create a Pull Request which will be promptly reviewed and…&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/Dragsters/Nutrihelp" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;

&lt;h2&gt;
  
  
  Batua
&lt;/h2&gt;

&lt;p&gt;A personal app to track and manage your expenses.&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/pratyushmp" rel="noopener noreferrer"&gt;
        pratyushmp
      &lt;/a&gt; / &lt;a href="https://github.com/pratyushmp/Batua" rel="noopener noreferrer"&gt;
        Batua
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      A personal app to track and manage your expenses.
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;div&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/7fc61776d70474b2d5576b6325253fa50330a5d0fb0b08999704ad62a9979a76/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f70726174797573686d702f4261747561"&gt;&lt;img src="https://camo.githubusercontent.com/7fc61776d70474b2d5576b6325253fa50330a5d0fb0b08999704ad62a9979a76/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f70726174797573686d702f4261747561" alt="Forks"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/3bd982501af66b88af0c6afeaf880244246ae9611c00908cdef4e8ddaa1fd09a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f70726174797573686d702f4261747561"&gt;&lt;img src="https://camo.githubusercontent.com/3bd982501af66b88af0c6afeaf880244246ae9611c00908cdef4e8ddaa1fd09a/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f70726174797573686d702f4261747561" alt="Stars"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/2dd2b65215ac8e9b54d127df40b56c0864611bb85372cd18f77b3af4723eff2f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f70726174797573686d702f4261747561"&gt;&lt;img src="https://camo.githubusercontent.com/2dd2b65215ac8e9b54d127df40b56c0864611bb85372cd18f77b3af4723eff2f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f70726174797573686d702f4261747561" alt="Issues"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/6e3014183681565cbf2211d27db5fe58aedb39a7632bfed2fcf1292f30c88cfa/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f70726174797573686d702f42617475613f"&gt;&lt;img src="https://camo.githubusercontent.com/6e3014183681565cbf2211d27db5fe58aedb39a7632bfed2fcf1292f30c88cfa/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f70726174797573686d702f42617475613f" alt="Pull Requests"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;👝Batua👝&lt;/h1&gt;

&lt;/div&gt;
&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;A Personal App to track and manage your expenses!&lt;/h3&gt;

&lt;/div&gt;
&lt;p&gt;Batua is the best money manager and daily expense tracker to automatically and securely track your monthly spends. Stay within budget, pay bills on time and SAVE more money every month. Find out how much you spend on food, shopping, groceries, etc. and how much you are saving month on month.&lt;/p&gt;
&lt;/div&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Features:🔬&lt;/h2&gt;

&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;This App will help shopkeepers, vendors, and many other people to keep track of their daily expense.&lt;/li&gt;
&lt;li&gt;It will help you save your money by managing your daily expenditure.&lt;/li&gt;
&lt;/ul&gt;

&lt;div&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;📷App Mock-ups📷&lt;/h2&gt;

&lt;/div&gt;

&lt;p&gt;&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;br&gt;
&lt;tbody&gt;
&lt;br&gt;
&lt;tr&gt;
&lt;br&gt;
  &lt;td&gt;&lt;a rel="noopener noreferrer" href="https://github.com/pratyushmp/BatuaBatua2.png"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fpratyushmp%2FBatuaBatua2.png" width="450" height="500"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;br&gt;
  &lt;td&gt;&lt;a rel="noopener noreferrer" href="https://github.com/pratyushmp/BatuaBatua1.png"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fpratyushmp%2FBatuaBatua1.png" width="450" height="500"&gt;&lt;/a&gt;&lt;/td&gt;
&lt;br&gt;
&lt;/tr&gt;
&lt;br&gt;
&lt;/tbody&gt;
&lt;br&gt;
&lt;/table&gt;&lt;/div&gt;&lt;br&gt;
&lt;/p&gt;
&lt;/div&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Tech Stack🧐&lt;/h2&gt;

&lt;/div&gt;

&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;Google-services.json file&lt;/h3&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://drive.google.com/file/d/1-BHo4po-p11s8qNos32L7R5Zo1NFmJVT/view?usp=sharing" rel="nofollow noopener noreferrer"&gt;https://drive.google.com/file/d/1-BHo4po-p11s8qNos32L7R5Zo1NFmJVT/view?usp=sharing&lt;/a&gt;&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Contributing Guidelines:📝&lt;/h2&gt;

&lt;/div&gt;

&lt;ul&gt;
&lt;li&gt;Checkout the &lt;a href="https://github.com/pratyushmp/BatuaContributing.md" rel="noopener noreferrer"&gt;Contributing.md&lt;/a&gt; file before getting started with your contributions.&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Contributors:👨‍💻&lt;/h2&gt;

&lt;/div&gt;

&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;Our hard working Project Maintainer👨‍🏫&lt;/h3&gt;

&lt;/div&gt;

&lt;p&gt;&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;br&gt;
&lt;thead&gt;
&lt;br&gt;
&lt;tr&gt;
&lt;br&gt;
&lt;th&gt;&lt;a rel="noopener noreferrer nofollow" href="https://avatars.githubusercontent.com/u/42929557?v=4"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Favatars.githubusercontent.com%2Fu%2F42929557%3Fv%3D4"&gt;&lt;/a&gt;&lt;/th&gt;
&lt;br&gt;
&lt;/tr&gt;
&lt;br&gt;
&lt;/thead&gt;
&lt;br&gt;
&lt;tbody&gt;
&lt;br&gt;
&lt;tr&gt;
&lt;br&gt;
&lt;td&gt;&lt;p&gt;&lt;a href="https://github.com/pratyushmp" rel="noopener noreferrer"&gt;Pratyush M&lt;/a&gt;&lt;/p&gt;&lt;/td&gt;
&lt;br&gt;
&lt;/tr&gt;
&lt;br&gt;
&lt;/tbody&gt;
&lt;br&gt;
&lt;/table&gt;&lt;/div&gt;&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;Valuable Contributors✨&lt;/h3&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://github.com/pratyushmp/Batua/graphs/contributors" rel="noopener noreferrer"&gt;&lt;br&gt;
  &lt;img src="https://camo.githubusercontent.com/dc2c1c4e22452ea20dce0b7f5d99d19fa937cd74c96d62ae3ab91ee35c8da352/68747470733a2f2f636f6e747269622e726f636b732f696d6167653f7265706f3d70726174797573686d702f4261747561"&gt;&lt;br&gt;
&lt;/a&gt;&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;BATUA is a part of these open source programs:🌐&lt;/h2&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/90c9002b372fc6457aa9262f593025317c46175eccf9cfa3c9734a05480c2565/68747470733a2f2f6d69726f2e6d656469756d2e636f6d2f6d61782f313430302f312a633459675258595161794f5657785633376f757272772e706e67"&gt;&lt;img src="https://camo.githubusercontent.com/90c9002b372fc6457aa9262f593025317c46175eccf9cfa3c9734a05480c2565/68747470733a2f2f6d69726f2e6d656469756d2e636f6d2f6d61782f313430302f312a633459675258595161794f5657785633376f757272772e706e67" alt=""&gt;&lt;/a&gt;&lt;/p&gt;

&lt;/div&gt;
&lt;br&gt;
&lt;br&gt;
  &lt;/div&gt;
&lt;br&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/pratyushmp/Batua" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;


&lt;h2&gt;
  
  
  forestTreesTagging
&lt;/h2&gt;

&lt;p&gt;This project has the vision to assist the officials for Forest trees census and tagging each tree with proper location (latitude and longitude), tree type, and other arguments. and further had the plan to apply data analysis over-collected data.&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/CodeFlowOrg" rel="noopener noreferrer"&gt;
        CodeFlowOrg
      &lt;/a&gt; / &lt;a href="https://github.com/CodeFlowOrg/forestTreesTagging" rel="noopener noreferrer"&gt;
        forestTreesTagging
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      This project has the vision to assist the officials for Forest trees census and tagging each tree with proper location (latitude and longitude), tree type, and other arguments. and further had the plan to apply data analysis over-collected data.
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;div&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/b1760aeb730409b9b62688029df2c887ceb4c123682ed7b0fd72a2542702a796/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f436f6465466c6f773230312f666f72657374547265657354616767696e67"&gt;&lt;img src="https://camo.githubusercontent.com/b1760aeb730409b9b62688029df2c887ceb4c123682ed7b0fd72a2542702a796/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f436f6465466c6f773230312f666f72657374547265657354616767696e67" alt="Forks"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/f1ce098534ef1121a436ed330e69180b5acc2655d1f74e3af0b2ae9f69ec1d14/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f436f6465466c6f773230312f666f72657374547265657354616767696e67"&gt;&lt;img src="https://camo.githubusercontent.com/f1ce098534ef1121a436ed330e69180b5acc2655d1f74e3af0b2ae9f69ec1d14/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f436f6465466c6f773230312f666f72657374547265657354616767696e67" alt="Stars"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/837d117351797efd1c52f03472435913f3cfbb61fdfdf103415a7e2e53854444/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f436f6465466c6f773230312f666f72657374547265657354616767696e67"&gt;&lt;img src="https://camo.githubusercontent.com/837d117351797efd1c52f03472435913f3cfbb61fdfdf103415a7e2e53854444/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f436f6465466c6f773230312f666f72657374547265657354616767696e67" alt="Issues"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/2e8f205a3a2ff851ebde76be12edd7628ee88f8b80b6d7c479279e77866b6126/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f436f6465466c6f773230312f666f72657374547265657354616767696e673f"&gt;&lt;img src="https://camo.githubusercontent.com/2e8f205a3a2ff851ebde76be12edd7628ee88f8b80b6d7c479279e77866b6126/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f436f6465466c6f773230312f666f72657374547265657354616767696e673f" alt="Pull Requests"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;🌳Trees🌳 &lt;br&gt; 🔖Tagger🔖 &lt;br&gt; App &amp;amp; Analysis Software&lt;/h1&gt;
&lt;/div&gt;
&lt;blockquote&gt;
&lt;p&gt;The vision of this project is to assist forest officials for tree census by tagging each tree with proper location (latitude and longitude), tree type, and other arguments. There is a future plan to apply data analysis over the collected data.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/div&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Focused Area:🧐&lt;/h2&gt;
&lt;/div&gt;
&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;This project is based on:&lt;/h3&gt;
&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Flutter-based app:  In this app, the user can tag the tree by locating or going to the exact location and then feeding the latitude and longitude details along with the other parameters. Once the data is stored, it will generate a unique key and a QR code for the same, so that later on we can refer to that tree by that code itself.&lt;/li&gt;
&lt;li&gt;A data analysis system with a Web App interface to the collected data and apply a machine learning model for prediction of different parameters.&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Tech Stack:⚙️&lt;/h2&gt;

&lt;/div&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/e41c303dccdf0bab75df2827d56b243e58dd8fe55c2eb91fed1d670f76a5c35f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f466c75747465722532302d2532333032353639422e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d466c7574746572266c6f676f436f6c6f723d7768697465"&gt;&lt;img alt="Flutter" src="https://camo.githubusercontent.com/e41c303dccdf0bab75df2827d56b243e58dd8fe55c2eb91fed1d670f76a5c35f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f466c75747465722532302d2532333032353639422e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d466c7574746572266c6f676f436f6c6f723d7768697465"&gt;&lt;/a&gt;    &lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/37ca765a403be42421ced490b9f10ea25c7567b47d7893771325e27bf0c8f7c4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f646172742d2532333031373543322e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d64617274266c6f676f436f6c6f723d7768697465"&gt;&lt;img alt="Dart" src="https://camo.githubusercontent.com/37ca765a403be42421ced490b9f10ea25c7567b47d7893771325e27bf0c8f7c4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f646172742d2532333031373543322e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d64617274266c6f676f436f6c6f723d7768697465"&gt;&lt;/a&gt;  &lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/2639481613a2ec59b8e6d5535e7bda253ce4f7e3d74d781451038fd3323e07b0/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f66697265626173652532302d2532333033394245352e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d6669726562617365"&gt;&lt;img alt="Firebase" src="https://camo.githubusercontent.com/2639481613a2ec59b8e6d5535e7bda253ce4f7e3d74d781451038fd3323e07b0/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f66697265626173652532302d2532333033394245352e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d6669726562617365"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Problem Statement:📋&lt;/h2&gt;

&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;Digital transformation of maintaining…&lt;/li&gt;
&lt;/ul&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/CodeFlowOrg/forestTreesTagging" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;


&lt;h2&gt;
  
  
  Animated-Text-Kit
&lt;/h2&gt;

&lt;p&gt;A flutter package to create cool and beautiful text animations. [Flutter Favorite Package]&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/aagarwal1012" rel="noopener noreferrer"&gt;
        aagarwal1012
      &lt;/a&gt; / &lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit" rel="noopener noreferrer"&gt;
        Animated-Text-Kit
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      🔔  A flutter package to create cool and beautiful text animations. [Flutter Favorite Package]
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer" href="https://github.com/aagarwal1012/Animated-Text-Kit/blob/master/display/cover.gif?raw=true"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Faagarwal1012%2FAnimated-Text-Kit%2Fraw%2Fmaster%2Fdisplay%2Fcover.gif%3Fraw%3Dtrue"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;Animated Text Kit&lt;/h1&gt;
&lt;/div&gt;
&lt;p&gt;A flutter package which contains a collection of some cool and awesome text animations. Recommended package for text animations in Codemagic's Ebook, &lt;a href="https://blog.codemagic.io/flutter-libraries-ebook-by-codemagic/ebook-flutter-libraries-we-love-by-codemagic.pdf" rel="nofollow noopener noreferrer"&gt;"Flutter libraries we love"&lt;/a&gt;. Try out our &lt;a href="https://animated-text-kit.web.app/" rel="nofollow noopener noreferrer"&gt;live example app&lt;/a&gt;.&lt;/p&gt;
&lt;br&gt;
&lt;p&gt;
  &lt;a href="https://flutter.dev" rel="nofollow noopener noreferrer"&gt;
    &lt;img src="https://camo.githubusercontent.com/3a7b7454572f6b4d23a9a5bc83dffe1e02f6480701fd1ee2a031572be0d26af6/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f506c6174666f726d2d466c75747465722d3032353639423f6c6f676f3d666c7574746572" alt="Platform"&gt;
  &lt;/a&gt;
  &lt;a href="https://pub.dartlang.org/packages/animated_text_kit" rel="nofollow noopener noreferrer"&gt;
    &lt;img src="https://camo.githubusercontent.com/c5199e5c5940030330a164f8dafd6d1143163b91ed82fd2eea4744fd16d753d9/68747470733a2f2f696d672e736869656c64732e696f2f7075622f762f616e696d617465645f746578745f6b69742e737667" alt="Pub Package"&gt;
  &lt;/a&gt;
  &lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit/actions?query=workflow%3ACI" rel="noopener noreferrer"&gt;
    &lt;img src="https://camo.githubusercontent.com/a3338871ed4430d346ed8e74bfd806b4439ca7b6baefcd5ab2cb320495e89001/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f616167617277616c313031322f416e696d617465642d546578742d4b69742f43493f6c6f676f3d676974687562" alt="Build Status"&gt;
  &lt;/a&gt;
  &lt;br&gt;
  &lt;a href="https://codecov.io/gh/aagarwal1012/Animated-Text-Kit" rel="nofollow noopener noreferrer"&gt;
    &lt;img src="https://camo.githubusercontent.com/3f17b370a4b24ae8793a1f69a04582405f692efead7a7ca7020da987b2cec534/68747470733a2f2f636f6465636f762e696f2f67682f616167617277616c313031322f416e696d617465642d546578742d4b69742f6272616e63682f6d61737465722f67726170682f62616467652e737667" alt="Codecov Coverage"&gt;
  &lt;/a&gt;
  &lt;a href="https://opensource.org/licenses/MIT" rel="nofollow noopener noreferrer"&gt;
    &lt;img src="https://camo.githubusercontent.com/9223d51b8b7ef11d6840c32535a830fd525bd5fc08e56798648232440c2da179/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f616167617277616c313031322f616e696d617465642d746578742d6b69743f636f6c6f723d726564" alt="License: MIT"&gt;
  &lt;/a&gt;
  &lt;a href="https://github.com/Solido/awesome-flutter#animation" rel="noopener noreferrer"&gt;
    &lt;img src="https://camo.githubusercontent.com/e88f5e3aece27bc042c745cf07e863e2b57807b8d8d23bd5f034aa4b84106479/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f417765736f6d652d466c75747465722d4643363041383f6c6f676f3d617765736f6d652d6c69737473" alt="Awesome Flutter"&gt;
  &lt;/a&gt;
  &lt;a href="https://www.paypal.me/aagarwal1012" rel="nofollow noopener noreferrer"&gt;
    &lt;img src="https://camo.githubusercontent.com/cee12617162f11ad86579ca9660ef1956a833e66cf7e043d51d92601b10c12f3/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f446f6e6174652d50617950616c2d3030343537433f6c6f676f3d70617970616c" alt="Donate"&gt;
  &lt;/a&gt;
&lt;/p&gt;

&lt;p&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://flutter.dev/docs/development/packages-and-plugins/favorites" rel="nofollow noopener noreferrer"&gt;&lt;br&gt;
  &lt;img height="150" src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Faagarwal1012%2FAnimated-Text-Kit%2Fraw%2Fmaster%2Fdisplay%2Fflutter-favorite-badge.png%3Fraw%3Dtrue"&gt;&lt;br&gt;
&lt;/a&gt;&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;Table of contents&lt;/h1&gt;
&lt;/div&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#flutter-package-of-the-week" rel="noopener noreferrer"&gt;Flutter Package of the Week&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#installing" rel="noopener noreferrer"&gt;Installing&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#usage" rel="noopener noreferrer"&gt;Usage&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#new-with-version-3" rel="noopener noreferrer"&gt;New with Version 3&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;

&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#animations" rel="noopener noreferrer"&gt;Animations&lt;/a&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#rotate" rel="noopener noreferrer"&gt;Rotate&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#fade" rel="noopener noreferrer"&gt;Fade&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#typer" rel="noopener noreferrer"&gt;Typer&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#typewriter" rel="noopener noreferrer"&gt;Typewriter&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#scale" rel="noopener noreferrer"&gt;Scale&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#colorize" rel="noopener noreferrer"&gt;Colorize&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#textliquidfill" rel="noopener noreferrer"&gt;TextLiquidFill&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#wavy" rel="noopener noreferrer"&gt;Wavy&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#flicker" rel="noopener noreferrer"&gt;Flicker&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#create-your-own-animations" rel="noopener noreferrer"&gt;Create your own Animations&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#bugs-or-requests" rel="noopener noreferrer"&gt;Bugs or Requests&lt;/a&gt;&lt;/li&gt;

&lt;li&gt;&lt;a href="https://github.com/aagarwal1012/Animated-Text-Kit#contributors" rel="noopener noreferrer"&gt;Contributors&lt;/a&gt;&lt;/li&gt;

&lt;/ul&gt;

&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;Flutter Package of the Week&lt;/h1&gt;
&lt;/div&gt;

&lt;p&gt;&lt;a href="https://youtu.be/foQTKCQqVWk" rel="nofollow noopener noreferrer"&gt;&lt;br&gt;
    &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Faagarwal1012%2FAnimated-Text-Kit%2Fraw%2Fmaster%2Fdisplay%2Fflutter_package_of_the_week.PNG%3Fraw%3Dtrue" alt="Flutter Package of the Week"&gt;&lt;br&gt;
&lt;/a&gt;&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;Installing&lt;/h1&gt;

&lt;/div&gt;

&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;1. Depend on it&lt;/h3&gt;

&lt;/div&gt;

&lt;p&gt;Add this to your package's &lt;code&gt;pubspec.yaml&lt;/code&gt; file:&lt;/p&gt;

&lt;div class="highlight highlight-source-yaml notranslate position-relative overflow-auto js-code-highlight"&gt;
&lt;pre&gt;&lt;span class="pl-ent"&gt;dependencies&lt;/span&gt;:
  &lt;span class="pl-ent"&gt;animated_text_kit&lt;/span&gt;: &lt;span class="pl-s"&gt;^4.2.2&lt;/span&gt;&lt;/pre&gt;

&lt;/div&gt;
&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;2. Install it&lt;/h3&gt;

&lt;/div&gt;

&lt;p&gt;You can install packages from the command line:&lt;/p&gt;

&lt;p&gt;with &lt;code&gt;pub&lt;/code&gt;:&lt;/p&gt;

&lt;div class="snippet-clipboard-content notranslate position-relative overflow-auto"&gt;&lt;pre class="notranslate"&gt;&lt;code&gt;$ pub get
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;p&gt;with &lt;code&gt;Flutter&lt;/code&gt;:&lt;/p&gt;
&lt;div class="snippet-clipboard-content notranslate position-relative overflow-auto"&gt;&lt;pre class="notranslate"&gt;&lt;code&gt;$ flutter pub get
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;
&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;3. Import it&lt;/h3&gt;

&lt;/div&gt;

&lt;p&gt;Now in your &lt;code&gt;Dart&lt;/code&gt; code, you can use:&lt;/p&gt;

&lt;div class="highlight highlight-source-dart notranslate position-relative overflow-auto js-code-highlight"&gt;
&lt;pre&gt;&lt;span class="pl-k"&gt;import&lt;/span&gt; &lt;span class="pl-s"&gt;'package:animated_text_kit/animated_text_kit.dart'&lt;/span&gt;;&lt;/pre&gt;

&lt;/div&gt;

&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;Usage&lt;/h1&gt;

&lt;/div&gt;

&lt;p&gt;&lt;code&gt;AnimatedTextKit&lt;/code&gt; is a &lt;em&gt;Stateful Widget&lt;/em&gt; that produces text animations.
Include it in your &lt;code&gt;build&lt;/code&gt; method like:&lt;/p&gt;
&lt;div class="highlight highlight-source-dart notranslate position-relative overflow-auto js-code-highlight"&gt;
&lt;pre&gt;&lt;span class="pl-c1"&gt;AnimatedTextKit&lt;/span&gt;(
  animatedTexts&lt;span class="pl-k"&gt;:&lt;/span&gt;&lt;/pre&gt;…
&lt;/div&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/aagarwal1012/Animated-Text-Kit" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;


&lt;h2&gt;
  
  
  Friday
&lt;/h2&gt;

&lt;p&gt;Personal Class Manager Assistant.&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/avinashkranjan" rel="noopener noreferrer"&gt;
        avinashkranjan
      &lt;/a&gt; / &lt;a href="https://github.com/avinashkranjan/Friday" rel="noopener noreferrer"&gt;
        Friday
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      🎓 Friday - Your Personal Class Manager Assistant, It'll never let you miss another assignment deadline or upcoming test. https://friday.avinashranjan.com
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt; &lt;a rel="noopener noreferrer" href="https://github.com/iqrafirdose/Friday/assets/114678694/ef952111-ec10-4eda-b805-4cbb42e4f2d6"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Fiqrafirdose%2FFriday%2Fassets%2F114678694%2Fef952111-ec10-4eda-b805-4cbb42e4f2d6" height="32" alt="logo"&gt;&lt;/a&gt; Friday &lt;/h1&gt;
&lt;/div&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;Friday - Your Personal Class Assistant&lt;/h1&gt;
&lt;/div&gt;
&lt;p&gt;Friday is an innovative application designed to help you stay organized and never miss an assignment deadline or upcoming test again. With the shift to online education due to the pandemic, keeping track of assignments, exams, and other academic tasks can be overwhelming.&lt;/p&gt;
&lt;p&gt;
 &lt;a rel="noopener noreferrer" href="https://private-user-images.githubusercontent.com/63696299/240369870-199df5e8-c84d-41ab-9f19-bf3d638bdfbc.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mjg5MjIxNTEsIm5iZiI6MTcyODkyMTg1MSwicGF0aCI6Ii82MzY5NjI5OS8yNDAzNjk4NzAtMTk5ZGY1ZTgtYzg0ZC00MWFiLTlmMTktYmYzZDYzOGJkZmJjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNDEwMTQlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjQxMDE0VDE2MDQxMVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTEyYTA3MzU5NWYzZmRiYjY3NDgwMjZkNjA4MTUxMThmMGFmOTA4NWViMzZkNmY1NTdiOWM5ODI0ZDk0NjYxODImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.BoR1T3X0Q8SWYIfn6mstDPS7V9bmqUyuhxlTM-zbB7Y"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fprivate-user-images.githubusercontent.com%2F63696299%2F240369870-199df5e8-c84d-41ab-9f19-bf3d638bdfbc.png%3Fjwt%3DeyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3Mjg5MjIxNTEsIm5iZiI6MTcyODkyMTg1MSwicGF0aCI6Ii82MzY5NjI5OS8yNDAzNjk4NzAtMTk5ZGY1ZTgtYzg0ZC00MWFiLTlmMTktYmYzZDYzOGJkZmJjLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNDEwMTQlMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjQxMDE0VDE2MDQxMVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTEyYTA3MzU5NWYzZmRiYjY3NDgwMjZkNjA4MTUxMThmMGFmOTA4NWViMzZkNmY1NTdiOWM5ODI0ZDk0NjYxODImWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.BoR1T3X0Q8SWYIfn6mstDPS7V9bmqUyuhxlTM-zbB7Y"&gt;&lt;/a&gt;
&lt;/p&gt;

&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt; "Friday - Your Personal Class Assistant, It'll never let you miss another assignment deadline or any upcoming test."
&lt;/h2&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/3fd607a6b7dd4a6f3d7b8167e8333914f0b57e4424ac08339f49198d3c1a0ee8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f6176696e6173686b72616e6a616e2f467269646179"&gt;&lt;img src="https://camo.githubusercontent.com/3fd607a6b7dd4a6f3d7b8167e8333914f0b57e4424ac08339f49198d3c1a0ee8/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f6176696e6173686b72616e6a616e2f467269646179" alt="Issues"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/126b1e14715c94aaece7e0777a7431e17a87271e039825e06f284575ee42c94b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f6176696e6173686b72616e6a616e2f467269646179"&gt;&lt;img src="https://camo.githubusercontent.com/126b1e14715c94aaece7e0777a7431e17a87271e039825e06f284575ee42c94b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f6176696e6173686b72616e6a616e2f467269646179" alt="Pull Requests"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/86aac47e9c6a415dc57da639d5f84418e366822fdf4d9627212961046ae57ad5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f6176696e6173686b72616e6a616e2f467269646179"&gt;&lt;img src="https://camo.githubusercontent.com/86aac47e9c6a415dc57da639d5f84418e366822fdf4d9627212961046ae57ad5/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f6176696e6173686b72616e6a616e2f467269646179" alt="Forks"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/a531ac0c1657fe9b19f47dfcb25e2ccb4ea0022ad318c9701f06283012fe1912/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f6176696e6173686b72616e6a616e2f467269646179"&gt;&lt;img src="https://camo.githubusercontent.com/a531ac0c1657fe9b19f47dfcb25e2ccb4ea0022ad318c9701f06283012fe1912/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f6176696e6173686b72616e6a616e2f467269646179" alt="Stars"&gt;&lt;/a&gt;
&lt;a href="https://github.com/avinashkranjan/Friday" rel="noopener noreferrer"&gt;&lt;img src="https://camo.githubusercontent.com/b914628badd0c441827398f568d06c4c6ca9b6598a9b2bbf3d9eeb49b2bada0d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f6176696e6173686b72616e6a616e2f467269646179" alt="License"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/c14c272f41ee88122f749a77c94c46b0aafa3fca9903f5de898f5cab9866bf8d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7265706f2d73697a652f6176696e6173686b72616e6a616e2f4672696461792e7376673f6c6162656c3d5265706f25323073697a65267374796c653d666c61742d737175617265"&gt;&lt;img src="https://camo.githubusercontent.com/c14c272f41ee88122f749a77c94c46b0aafa3fca9903f5de898f5cab9866bf8d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f7265706f2d73697a652f6176696e6173686b72616e6a616e2f4672696461792e7376673f6c6162656c3d5265706f25323073697a65267374796c653d666c61742d737175617265" alt=""&gt;&lt;/a&gt; &lt;/p&gt;
&lt;/div&gt;

&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt; Introduction 🚩 &lt;/h1&gt;

&lt;/div&gt;


&lt;p&gt;&lt;br&gt;
    Since the pandemic, almost everything has been moved on to the virtual world and So has &lt;b&gt;Education&lt;/b&gt;. All our classes have been moved online and with that, all our &lt;b&gt;&lt;em&gt; assignments, tests, exams, Viva&lt;/em&gt;&lt;/b&gt; are being held on an online platform as well, With so many &lt;b&gt;&lt;em&gt;assignment deadlines, upcoming exam dates, and being busy with our life&lt;/em&gt;&lt;/b&gt; we forget the deadlines and exam dates on most occasion. I don't know how many of you but it happens to me frequently…&lt;/p&gt;
&lt;/div&gt;
&lt;br&gt;
  &lt;/div&gt;
&lt;br&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/avinashkranjan/Friday" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;


&lt;h2&gt;
  
  
  Libro
&lt;/h2&gt;

&lt;p&gt;An App Built using flutter using which we can share books with people around.&lt;/p&gt;


&lt;div class="ltag-github-readme-tag"&gt;
  &lt;div class="readme-overview"&gt;
    &lt;h2&gt;
      &lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev.to%2Fassets%2Fgithub-logo-5a155e1f9a670af7944dd5e12375bc76ed542ea80224905ecaf878b9157cdefc.svg" alt="GitHub logo"&gt;
      &lt;a href="https://github.com/infiniteoverflow" rel="noopener noreferrer"&gt;
        infiniteoverflow
      &lt;/a&gt; / &lt;a href="https://github.com/infiniteoverflow/Libro" rel="noopener noreferrer"&gt;
        Libro
      &lt;/a&gt;
    &lt;/h2&gt;
    &lt;h3&gt;
      An App Built using flutter using which we can share books with people around us !!
    &lt;/h3&gt;
  &lt;/div&gt;
  &lt;div class="ltag-github-body"&gt;
    
&lt;div id="readme" class="md"&gt;
&lt;div&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/93d2b14e172b63cf39e331e73137aa184568e33d141fc77657a5b50bd821710c/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f696e66696e6974656f766572666c6f772f4c6962726f"&gt;&lt;img src="https://camo.githubusercontent.com/93d2b14e172b63cf39e331e73137aa184568e33d141fc77657a5b50bd821710c/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f666f726b732f696e66696e6974656f766572666c6f772f4c6962726f" alt="Forks"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/1fdafcf417330ed555571f8c650251b9869fa72dae149d2cea3a60ece71a5b1b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f696e66696e6974656f766572666c6f772f4c6962726f"&gt;&lt;img src="https://camo.githubusercontent.com/1fdafcf417330ed555571f8c650251b9869fa72dae149d2cea3a60ece71a5b1b/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f73746172732f696e66696e6974656f766572666c6f772f4c6962726f" alt="Stars"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/8025b1fca60070511d97bbef2a922e048d6d45d131520a1dc7c3933a6a04b37d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f696e66696e6974656f766572666c6f772f4c6962726f"&gt;&lt;img src="https://camo.githubusercontent.com/8025b1fca60070511d97bbef2a922e048d6d45d131520a1dc7c3933a6a04b37d/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732f696e66696e6974656f766572666c6f772f4c6962726f" alt="Issues"&gt;&lt;/a&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/1bf22904b6b41c97569d3d6834f51280e365d6b6fdff4199e4e02c39de4c9e69/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f696e66696e6974656f766572666c6f772f4c6962726f3f"&gt;&lt;img src="https://camo.githubusercontent.com/1bf22904b6b41c97569d3d6834f51280e365d6b6fdff4199e4e02c39de4c9e69/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6973737565732d70722f696e66696e6974656f766572666c6f772f4c6962726f3f" alt="Pull Requests"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;📚Book-Donation-App📚&lt;/h1&gt;

&lt;/div&gt;
&lt;p&gt;An App Built using flutter using which we can share books with people around us !!&lt;/p&gt;
&lt;/div&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer" href="https://github.com/infiniteoverflow/Libroposter.png"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Finfiniteoverflow%2FLibroposter.png" alt=""&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;Features:✨&lt;/h1&gt;

&lt;/div&gt;
&lt;ul&gt;
&lt;li&gt;A book Sharing App.&lt;/li&gt;
&lt;li&gt;This app helps you find the books you want easily.&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;Tech Stack:⚙️&lt;/h1&gt;

&lt;/div&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/37ca765a403be42421ced490b9f10ea25c7567b47d7893771325e27bf0c8f7c4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f646172742d2532333031373543322e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d64617274266c6f676f436f6c6f723d7768697465"&gt;&lt;img alt="Dart" src="https://camo.githubusercontent.com/37ca765a403be42421ced490b9f10ea25c7567b47d7893771325e27bf0c8f7c4/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f646172742d2532333031373543322e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d64617274266c6f676f436f6c6f723d7768697465" width="300" height="100"&gt;&lt;/a&gt;  &lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/e41c303dccdf0bab75df2827d56b243e58dd8fe55c2eb91fed1d670f76a5c35f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f466c75747465722532302d2532333032353639422e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d466c7574746572266c6f676f436f6c6f723d7768697465"&gt;&lt;img alt="Flutter" src="https://camo.githubusercontent.com/e41c303dccdf0bab75df2827d56b243e58dd8fe55c2eb91fed1d670f76a5c35f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f466c75747465722532302d2532333032353639422e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d466c7574746572266c6f676f436f6c6f723d7768697465" width="300" height="100"&gt;&lt;/a&gt; &lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/2639481613a2ec59b8e6d5535e7bda253ce4f7e3d74d781451038fd3323e07b0/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f66697265626173652532302d2532333033394245352e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d6669726562617365"&gt;&lt;img alt="Firebase" src="https://camo.githubusercontent.com/2639481613a2ec59b8e6d5535e7bda253ce4f7e3d74d781451038fd3323e07b0/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f66697265626173652532302d2532333033394245352e7376673f267374796c653d666f722d7468652d6261646765266c6f676f3d6669726562617365" width="300" height="100"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h1 class="heading-element"&gt;Contributing Guidelines:📝&lt;/h1&gt;

&lt;/div&gt;
&lt;p&gt;Please read &lt;a href="https://github.com/infiniteoverflow/Libro/blob/main/Contributing.md" rel="noopener noreferrer"&gt;CONTRIBUTING.md&lt;/a&gt; for information on how to contribute to the project.&lt;/p&gt;
&lt;p&gt;To follow our sprints and workflow install &lt;a href="https://www.zenhub.com/extension" rel="nofollow noopener noreferrer"&gt;zenhub extension&lt;/a&gt; to access our board.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Google Services Files for running the app :&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;Drive Link : &lt;a href="https://drive.google.com/drive/folders/161WwprL9P_mHqdln_S0Zfm2bVnQSI1Dc?usp=sharing" rel="nofollow noopener noreferrer"&gt;https://drive.google.com/drive/folders/161WwprL9P_mHqdln_S0Zfm2bVnQSI1Dc?usp=sharing&lt;/a&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h2 class="heading-element"&gt;Tentative UI Design:🎨&lt;/h2&gt;

&lt;/div&gt;
&lt;p&gt;&lt;a rel="noopener noreferrer" href="https://github.com/infiniteoverflow/Libromock.png"&gt;&lt;img src="https://media.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fgithub.com%2Finfiniteoverflow%2FLibromock.png" alt=""&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;This project is a part of Girlscript Summer of Code 21'&lt;/strong&gt;
&lt;a rel="noopener noreferrer nofollow" href="https://camo.githubusercontent.com/90c9002b372fc6457aa9262f593025317c46175eccf9cfa3c9734a05480c2565/68747470733a2f2f6d69726f2e6d656469756d2e636f6d2f6d61782f313430302f312a633459675258595161794f5657785633376f757272772e706e67"&gt;&lt;img src="https://camo.githubusercontent.com/90c9002b372fc6457aa9262f593025317c46175eccf9cfa3c9734a05480c2565/68747470733a2f2f6d69726f2e6d656469756d2e636f6d2f6d61782f313430302f312a633459675258595161794f5657785633376f757272772e706e67" alt=""&gt;&lt;/a&gt;&lt;/p&gt;
&lt;div class="markdown-heading"&gt;
&lt;h3 class="heading-element"&gt;Valuable Contributors🤟&lt;/h3&gt;

&lt;/div&gt;
&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
    &lt;tbody&gt;
&lt;tr&gt;
        &lt;td&gt;
            &lt;a href="https://github.com/infiniteoverflow/Libro/graphs/contributors" rel="noopener noreferrer"&gt;
  &lt;img src="https://camo.githubusercontent.com/76671e84e5e560cc95413dce5947fb6beaa1eced8efd3a25737c9e47e7fcdeb4/68747470733a2f2f636f6e747269622e726f636b732f696d6167653f7265706f3d696e66696e6974656f766572666c6f772f4c6962726f"&gt;
&lt;/a&gt;
        &lt;/td&gt;
    &lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;
&lt;/div&gt;



&lt;/div&gt;
&lt;br&gt;
  &lt;div class="gh-btn-container"&gt;&lt;a class="gh-btn" href="https://github.com/infiniteoverflow/Libro" rel="noopener noreferrer"&gt;View on GitHub&lt;/a&gt;&lt;/div&gt;
&lt;br&gt;
&lt;/div&gt;
&lt;br&gt;


&lt;h2&gt;
  
  
  Thats all :)
&lt;/h2&gt;

&lt;p&gt;Help me improve this collection by sharing your open source projects or any cool ones that you know of!&lt;/p&gt;

&lt;p&gt;&lt;iframe width="710" height="399" src="https://www.youtube.com/embed/E87DW2iT5tk"&gt;
&lt;/iframe&gt;
&lt;/p&gt;

&lt;p&gt;If you’re a Flutter Developer, we have a community for you!&lt;/p&gt;

&lt;p&gt;I post internship opportunities that I come across, articles and tutorials. Join the &lt;strong&gt;Discord community&lt;/strong&gt; for free, using this &lt;a href="https://linktr.ee/flutterdev" rel="noopener noreferrer"&gt;link&lt;/a&gt;.&lt;/p&gt;

</description>
      <category>flutter</category>
      <category>opensource</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
