<?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: Shiv</title>
    <description>The latest articles on DEV Community by Shiv (@undrthegraveyard).</description>
    <link>https://dev.to/undrthegraveyard</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%2F2208799%2F7903ff6c-c806-41e5-bfa8-c86f720c3012.jpeg</url>
      <title>DEV Community: Shiv</title>
      <link>https://dev.to/undrthegraveyard</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/undrthegraveyard"/>
    <language>en</language>
    <item>
      <title>Diving into Reactjs</title>
      <dc:creator>Shiv</dc:creator>
      <pubDate>Sat, 19 Oct 2024 02:15:17 +0000</pubDate>
      <link>https://dev.to/undrthegraveyard/diving-into-reactjs-4eid</link>
      <guid>https://dev.to/undrthegraveyard/diving-into-reactjs-4eid</guid>
      <description>&lt;h2&gt;
  
  
  Meme Generator
&lt;/h2&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%2Fimg.shields.io%2Fbadge%2Fversion-1.0.0-blue.svg%3FcacheSeconds%3D2592000" 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%2Fimg.shields.io%2Fbadge%2Fversion-1.0.0-blue.svg%3FcacheSeconds%3D2592000" alt="Version" width="90" height="20"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Meme Generator is a fun and interactive web application that allows users to create custom memes using various templates. I've been learning about software development from an educational platform for a couple of months, and this project was part of the curriculum. &lt;/p&gt;

&lt;h2&gt;
  
  
  Table of Contents
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Demo&lt;/li&gt;
&lt;li&gt;Features&lt;/li&gt;
&lt;li&gt;Tech Stack&lt;/li&gt;
&lt;li&gt;Installation&lt;/li&gt;
&lt;li&gt;Usage&lt;/li&gt;
&lt;li&gt;Author&lt;/li&gt;
&lt;li&gt;License&lt;/li&gt;
&lt;li&gt;Show Your Support&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Demo
&lt;/h2&gt;

&lt;p&gt;Want to see the Meme Generator in action? Check out our live demo!&lt;/p&gt;

&lt;p&gt;&lt;a href="https://meme-generator-weld-pi.vercel.app/" rel="noopener noreferrer"&gt;Click here to view the demo&lt;/a&gt; &amp;lt;!-- Add your demo link here --&amp;gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Features
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Dynamic Meme Generation&lt;/strong&gt;: Fetch random meme images from an API.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Customizable Text&lt;/strong&gt;: Add top and bottom text to create unique memes.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Responsive Design&lt;/strong&gt;: Optimized for both desktop and mobile viewing.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Real-time Preview&lt;/strong&gt;: See your meme update as you type.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Clean UI&lt;/strong&gt;: Simple and intuitive user interface.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Tech Stack
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Frontend&lt;/strong&gt;: React.js&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Build Tool&lt;/strong&gt;: Vite for fast and efficient development&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Styling&lt;/strong&gt;: LESS for advanced styling capabilities&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;State Management&lt;/strong&gt;: React Hooks (useState, useEffect)&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;API Integration&lt;/strong&gt;: Fetch API for retrieving meme templates&lt;/li&gt;
&lt;/ul&gt;

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

&lt;ol&gt;
&lt;li&gt;Clone the repository:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;   git clone https://github.com/undrthegraveyard/meme_generator.git
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Navigate to the project directory:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;   &lt;span class="nb"&gt;cd &lt;/span&gt;meme_generator
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Install dependencies:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;   npm &lt;span class="nb"&gt;install&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;ol&gt;
&lt;li&gt;Start the development server:
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;   npm run dev
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Usage
&lt;/h2&gt;

&lt;ol&gt;
&lt;li&gt;Open the application in your browser.&lt;/li&gt;
&lt;li&gt;Click the "Get a new meme image" button to load a random meme template.&lt;/li&gt;
&lt;li&gt;Enter your desired text in the "Top text" and "Bottom text" fields.&lt;/li&gt;
&lt;li&gt;The meme will update in real-time as you type.&lt;/li&gt;
&lt;li&gt;Save or share your created meme (feature to be implemented).&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  Author
&lt;/h2&gt;

&lt;p&gt;👤 &lt;strong&gt;Shivam Agarwal&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Twitter: &lt;a href="https://x.com/shivam_agarwaal" rel="noopener noreferrer"&gt;@shivam_agarwaal&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Github: &lt;a href="https://github.com/undrthegraveyard" rel="noopener noreferrer"&gt;@undrthegraveyard&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  License
&lt;/h2&gt;

&lt;p&gt;This project is licensed under the MIT License.&lt;/p&gt;

&lt;h2&gt;
  
  
  Show your support
&lt;/h2&gt;

&lt;p&gt;Give a 👍🏻 if you liked it!&lt;/p&gt;

</description>
      <category>react</category>
      <category>javascript</category>
      <category>learning</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
