<?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: supriya maturu</title>
    <description>The latest articles on DEV Community by supriya maturu (@maturusupriya).</description>
    <link>https://dev.to/maturusupriya</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%2F791077%2F50a4de99-e585-4a54-9966-aa1ea1218dfd.jpg</url>
      <title>DEV Community: supriya maturu</title>
      <link>https://dev.to/maturusupriya</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/maturusupriya"/>
    <language>en</language>
    <item>
      <title>DOCKET APPLICATION USING APPWRITE</title>
      <dc:creator>supriya maturu</dc:creator>
      <pubDate>Wed, 11 May 2022 11:35:53 +0000</pubDate>
      <link>https://dev.to/maturusupriya/docket-application-using-appwrite-27f9</link>
      <guid>https://dev.to/maturusupriya/docket-application-using-appwrite-27f9</guid>
      <description>&lt;h2&gt;
  
  
  APPWRITE HACKATHON
&lt;/h2&gt;

&lt;p&gt;A Simple DOCKET APPLICATION using Appwrite and javascript. If we simply want to try out try out this App, go ahead and check out the code,&lt;/p&gt;

&lt;h2&gt;
  
  
  Getting Started
&lt;/h2&gt;

&lt;h2&gt;
  
  
  INSTALL APPWRITE
&lt;/h2&gt;

&lt;p&gt;Follow us our simple Installation Guide to get Appwrite up and running in our system.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--RA6g-xMA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6ewrwsiwrnatqfagg8rq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--RA6g-xMA--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6ewrwsiwrnatqfagg8rq.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;we need to make a few configuration changes to your Appwrite server  for the project.&lt;/p&gt;

&lt;p&gt;1.Add a new Web App in Appwrite and enter the endpoint of your website.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;(localhost, &amp;lt;project-name&amp;gt;.vercel.app etc)&lt;/code&gt; &lt;/p&gt;

&lt;p&gt;2.Create a new collection with the following properties.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Attributes Add the following attributes to the collection.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Note:
    make sure that your Attribute ID exactly matches the key in 
    the images.

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

&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;Add the boolean Attribute.
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;PERMISSION: Add the following permissions to your 
  collection.These permissions ensure that only registered users 
  can access the collection.

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

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--qyzI3JJJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/4m006zzucqnzoz8dus3t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--qyzI3JJJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/4m006zzucqnzoz8dus3t.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--bVEqwTUf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/86f35my13bugo5q6utc3.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--bVEqwTUf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/86f35my13bugo5q6utc3.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;For CMD code:
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;docker run -it --rm ^&lt;br&gt;
    --volume //var/run/docker.sock:/var/run/docker.sock ^&lt;br&gt;
    --volume "%cd%"/appwrite:/usr/src/code/appwrite:rw ^&lt;br&gt;
    --entrypoint="install" ^&lt;br&gt;
    appwrite/appwrite:0.13.4&lt;br&gt;
&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;use the code while installing the APPWRITE in CMD.&lt;br&gt;
and use the code in powershell as,&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;For Powershell code:
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;code&gt;docker run -it --rm ,&lt;br&gt;
    --volume /var/run/docker.sock:/var/run/docker.sock ,&lt;br&gt;
    --volume ${pwd}/appwrite:/usr/src/code/appwrite:rw ,&lt;br&gt;
    --entrypoint="install" ,&lt;br&gt;
    appwrite/appwrite:0.13.4&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;
  
  
  DEPLOY THE FRONT END
&lt;/h2&gt;

&lt;p&gt;you have two options to deploy the front-end and we will cover both of them here. In either case, you will need to fill in these environment variables that help your frontend connect to Appwrite.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;  VITE_APP_ENDPOINT-Your Appwrite endpoint.
  VITE_APP_PROJECT-Your Appwrite project ID.
  VITE_APP_COLLECTION_ID-Your Appwrite collection ID

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

&lt;/div&gt;



&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--pg7awCxx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/3fblxfb014t61zku07vu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pg7awCxx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/3fblxfb014t61zku07vu.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Gvhy7ebU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qj4ytintqse5ht50bjab.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Gvhy7ebU--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qj4ytintqse5ht50bjab.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Run locally
&lt;/h2&gt;

&lt;p&gt;Follow these instructions to run the demo app locally&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$ git clone https://github.com/appwrite/todo-with-vue&lt;br&gt;
$ cd todo-with-vue&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Run the following command to generate your .env vars&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$ cp .env.example .env&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;Now fill in the envrionment variables we discussed above in your .env&lt;/p&gt;

&lt;p&gt;Now run the following commands and you should be good to go,,&lt;/p&gt;

&lt;p&gt;&lt;code&gt;$ npm install&lt;br&gt;
$ npm run dev&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  GITHUB REPOSITORY
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/maturusupriya/Docket.git"&gt;https://github.com/maturusupriya/Docket.git&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Submission Category:
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;WEB2 WIZARDS
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Link to Code
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--L_9BVt-R--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1qzmgrsdpasyohv55mk4.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--L_9BVt-R--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1qzmgrsdpasyohv55mk4.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;code&gt;module.exports = {&lt;br&gt;
  plugins: {&lt;br&gt;
    tailwindcss: {},&lt;br&gt;
    autoprefixer: {},&lt;br&gt;
  },&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;POST THE DOCUMENT IN CSS USING .js&lt;/p&gt;

&lt;h2&gt;
  
  
  Additional Resources
&lt;/h2&gt;

&lt;h2&gt;
  
  
  Appwrite link:
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://appwrite.io/"&gt;https://appwrite.io/&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Docker link:
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://www.docker.com/"&gt;https://www.docker.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--69NpcTq3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/hltsnvjz5nj9ihef1id2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--69NpcTq3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/hltsnvjz5nj9ihef1id2.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--HhvCD_sG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/umbrsvydae0kf7cvhhem.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--HhvCD_sG--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/umbrsvydae0kf7cvhhem.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--gAn1hS5---/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2vwyn8dolic44ty3r0i0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--gAn1hS5---/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2vwyn8dolic44ty3r0i0.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--I29s2XaR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l4us2z92phoeol9kxs32.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--I29s2XaR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/l4us2z92phoeol9kxs32.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  APPWRITE  #DOCKET APPLICATION  #WEB2 WIZARD  #HTML #CSS
&lt;/h1&gt;

</description>
      <category>appwritehack</category>
      <category>javascript</category>
      <category>programming</category>
    </item>
    <item>
      <title>ANYONE CAN VOTE APPLICATION USING APPWRITE..</title>
      <dc:creator>supriya maturu</dc:creator>
      <pubDate>Tue, 10 May 2022 14:24:31 +0000</pubDate>
      <link>https://dev.to/maturusupriya/vote-for-everyone-application-using-appwrite-20p</link>
      <guid>https://dev.to/maturusupriya/vote-for-everyone-application-using-appwrite-20p</guid>
      <description>&lt;h2&gt;
  
  
  Appwrite
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;It is an open source backend as a service.&lt;/li&gt;
&lt;li&gt;It can manage backend without writing a code.&lt;/li&gt;
&lt;li&gt;Appwrite provide API's and tools.&lt;/li&gt;
&lt;li&gt;It can console to manage all resources.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--qiWMkCGw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/n0ofbg5fqtlmdtjpemxr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--qiWMkCGw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/n0ofbg5fqtlmdtjpemxr.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  INSTALLATION OF APPWRITE
&lt;/h2&gt;

&lt;p&gt;If we want to use Appwrite our system must consist Docker.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Fwju5Km7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8a2r6tqendsxn66snmgs.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Fwju5Km7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8a2r6tqendsxn66snmgs.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;br&gt;
check the activity whether the &lt;strong&gt;&lt;em&gt;Appwrite&lt;/em&gt;&lt;/strong&gt; and &lt;em&gt;&lt;strong&gt;Docker&lt;/strong&gt;&lt;/em&gt; is present or not using &lt;strong&gt;cmd&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--rbciddnb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/0e8zo21ceptvoq5fns6p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--rbciddnb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/0e8zo21ceptvoq5fns6p.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;br&gt;
If we want to make sure Everything set the localhost and signup the account start create a project.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;ADD A PLATFORM FOR THE PROJECT WHETHER IT IS A WEB APPLICATION ADD WEB TO THE PROJECT.&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--jHO-bnJw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2eo7za9y4vgelvia1s5g.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--jHO-bnJw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2eo7za9y4vgelvia1s5g.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--YmOdVPaY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2qdt0t8f2ziansmnbut6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--YmOdVPaY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2qdt0t8f2ziansmnbut6.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--N2mVsSus--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/nxlxxx0osx5j7gfmr91q.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--N2mVsSus--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/nxlxxx0osx5j7gfmr91q.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--rMVYvD_3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wt1954yo81k9lkorzn0c.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--rMVYvD_3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/wt1954yo81k9lkorzn0c.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;br&gt;
I upload my source code on GitHub........&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--wFTBDpxp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/gmqua4093piu86hfkvgg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--wFTBDpxp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/gmqua4093piu86hfkvgg.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;br&gt;
This is my CSS code which is used in the project it exhibits different styles.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--a7zsAFWH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ivu2jofqicm1y0gw3uql.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--a7zsAFWH--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ivu2jofqicm1y0gw3uql.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;br&gt;
It is an html code where in this we use dot operation many functions too.... for vote page&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--dth7QXm3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/apog1n5p9o40x3mv1bj6.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--dth7QXm3--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/apog1n5p9o40x3mv1bj6.png" alt="Image description" width="880" height="516"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--y97ODstL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pnt10uku678jgcufzt6l.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--y97ODstL--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pnt10uku678jgcufzt6l.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt; &lt;br&gt;
 It is also a html code for Login form.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--XZj3uiFP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1t6h8i9dziicnbho9zdf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--XZj3uiFP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1t6h8i9dziicnbho9zdf.png" alt="Image description" width="880" height="512"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--YoJZAl4s--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vrqwkqbgj0k0o6vwdsch.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--YoJZAl4s--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vrqwkqbgj0k0o6vwdsch.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--RB9gYKpz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/mgl2n24iezv4go6jwjpy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--RB9gYKpz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/mgl2n24iezv4go6jwjpy.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;The project contains the appropriate GitHub repository,and includes license and README.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--1apL5PtT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/tohgio59wxvdtbvoz0hw.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--1apL5PtT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/tohgio59wxvdtbvoz0hw.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Submission Category:
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Web2 Wizards
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Link to Code
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://github.com/maturusupriya/VOTING_APP.git"&gt;https://github.com/maturusupriya/VOTING_APP.git&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Additional Resources
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Appwrite link:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://appwrite.io/"&gt;https://appwrite.io/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Docker link:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://www.docker.com/"&gt;https://www.docker.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--wcPYVaHO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/80hc4k6eazmzaabezr5r.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--wcPYVaHO--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/80hc4k6eazmzaabezr5r.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6esLsrBn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/89vy31ld5hu4b31ycmvl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6esLsrBn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/89vy31ld5hu4b31ycmvl.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  APPWRITE #VOTE FOR EVERYONE #LOGIN FORM
&lt;/h1&gt;

</description>
      <category>appwritehack</category>
      <category>docker</category>
      <category>html</category>
      <category>css</category>
    </item>
    <item>
      <title>Food_Restaurent</title>
      <dc:creator>supriya maturu</dc:creator>
      <pubDate>Wed, 12 Jan 2022 16:50:42 +0000</pubDate>
      <link>https://dev.to/maturusupriya/foodrestaurent-1jo9</link>
      <guid>https://dev.to/maturusupriya/foodrestaurent-1jo9</guid>
      <description>&lt;p&gt;&lt;em&gt;&lt;strong&gt;FOOD MADE WITH LOVE&lt;/strong&gt;&lt;/em&gt;&lt;br&gt;
HERE THE INFORMATION IS CLEARLY VISIBLE EVEN A ILLETERATE CAN UNDERSTAND EASILY THROUGH OUR WEBSITE.&lt;br&gt;
WE ARE PROVIDING DELICIOUS FOOD BEGINS WITH LOW COST AND HIGH QUALITY,SO WE CAN GET HEALTHY FOOD ECONOMICALLY.&lt;br&gt;
&lt;strong&gt;WHILE EATING THIS "EYES WATERING", "MOUTH WATERING"&lt;/strong&gt;.......&lt;br&gt;
"WE CAN GET FRESH FOOD AT ANYTIME"..&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--LjUwVYM6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ml9px3gus12e16nt3hxr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--LjUwVYM6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ml9px3gus12e16nt3hxr.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;OUR WEBSITE CONTAINS&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;IN THIS WE DIVIDED INTO 6 CATEGORIES:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;HOME&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;SPECIALITY&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;GALLERY&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;POPULAR&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;CUSTOMER REVIEW&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;ORDER&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--b_JKm4Fp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/sx019c68nh77hw2pcesm.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--b_JKm4Fp--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/sx019c68nh77hw2pcesm.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--ZoKj-MlY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qen1rubbmhbpbr5zdexl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ZoKj-MlY--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/qen1rubbmhbpbr5zdexl.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;_ HOW IT WORKS_&lt;/strong&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;CHOOSE YOUR FAVOURITE FOOD.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;FREE AND FAST DELIVERY.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;EASY PAYMENT METHODS.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;4.AND FINALLY ENJOY YOUR FAVOURITE FOOD.........&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s---w5r1CF7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jsq0h5n4xbh30tmywboz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s---w5r1CF7--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jsq0h5n4xbh30tmywboz.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;br&gt;
 WE CAN GET A &lt;strong&gt;"4 STAR RATING"&lt;/strong&gt; FROM CUSTOMERS  AS A FEEDBACK &lt;br&gt;
OUR TEAM AND I DESIGN THE WEBSITE WITH SPECIAL ICONS WITH EASILY UNDERSTANDABLE FORMAT TO EVERYONE..&lt;/p&gt;

&lt;h3&gt;
  
  
  submission category:
&lt;/h3&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; E-COMMERCE CREATION
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;a href="https://github.com/maturusupriya/FOOD_MADE_WITH_LOVE.git"&gt;https://github.com/maturusupriya/FOOD_MADE_WITH_LOVE.git&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  ADDITIONAL RESOURCES/INFO
&lt;/h3&gt;

&lt;p&gt;WE USE VISUAL STUDIO TO WRITE THE CODE AND WE CONNECT TO MONGO ATLAS, THUS OUR OUR BEAUTIFUL WEBSITE IS CREATED..&lt;br&gt;
&lt;a href="https://docs.atlas.mongodb.com/"&gt;https://docs.atlas.mongodb.com/&lt;/a&gt;&lt;br&gt;
&lt;a href="https://docs.mongodb.com/"&gt;https://docs.mongodb.com/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--srWhHh-T--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/p2ael5irb9saeujcb2ye.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--srWhHh-T--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/p2ael5irb9saeujcb2ye.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--RqwKbBoo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/f3v5mufdopa5576qzcgc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--RqwKbBoo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/f3v5mufdopa5576qzcgc.png" alt="Image description" width="880" height="495"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  FOOD MADE WITH LOVE #DELICIOUS FOOD #USER-FRIENDLY
&lt;/h1&gt;

&lt;p&gt;..................................................................&lt;/p&gt;

</description>
      <category>atlashackathon</category>
    </item>
  </channel>
</rss>
