<?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: priyanshu pardhi</title>
    <description>The latest articles on DEV Community by priyanshu pardhi (@priyanshupardhi).</description>
    <link>https://dev.to/priyanshupardhi</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%2F495478%2F8eaa5d55-5ebf-4973-abdd-2a5fe06cd064.jpeg</url>
      <title>DEV Community: priyanshu pardhi</title>
      <link>https://dev.to/priyanshupardhi</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/priyanshupardhi"/>
    <language>en</language>
    <item>
      <title>Beginners Guide to environment variable setup (Django)</title>
      <dc:creator>priyanshu pardhi</dc:creator>
      <pubDate>Sat, 02 Sep 2023 09:35:18 +0000</pubDate>
      <link>https://dev.to/priyanshupardhi/beginners-guide-to-environment-variable-setup-django-4anc</link>
      <guid>https://dev.to/priyanshupardhi/beginners-guide-to-environment-variable-setup-django-4anc</guid>
      <description>&lt;p&gt;&lt;strong&gt;FYI&lt;/strong&gt;: Python virtual environment and environment variables is two different things.&lt;/p&gt;

&lt;p&gt;We are going to talk about setting up environment variables.&lt;br&gt;
Whenever we create an app there are some secret credential throughout our application that need to be secured. &lt;br&gt;
For securing an app we keep such credentials in an environment variable (Ideally we should do it before pushing and sharing to any remote resource).&lt;/p&gt;
&lt;h2&gt;
  
  
  Installation
&lt;/h2&gt;
&lt;h3&gt;
  
  
  1. Install Django Environ
&lt;/h3&gt;

&lt;p&gt;In your terminal, inside the project directory, type:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;$ pip install django-environ
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. Import environ
&lt;/h3&gt;

&lt;p&gt;Inside &lt;strong&gt;setting.py&lt;/strong&gt;&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import environ
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. Initialise environ
&lt;/h3&gt;

&lt;p&gt;Below your import in settings.py:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;import environ
# Initialise environment variables
env = environ.Env()
environ.Env.read_env()
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  4. Create your .env file
&lt;/h3&gt;

&lt;p&gt;In the same directory as settings.py, create a file called &lt;strong&gt;.env&lt;/strong&gt;, keep the essential and secured credential there, below we have added some common environment variable&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;SERVER=dev
DEBUG=True
SECRET_KEY=&amp;lt;project's secret key&amp;gt;

ALLOWED_HOSTS=['*']                # where '*' represents a wild-card to accept any HTTP host value.

# Database setting
DB_NAME=
DB_USER=
DB_PASSWORD=
DB_HOST=
DB_PORT=
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  5. Replace all references to your environment variables in settings.py
&lt;/h3&gt;

&lt;p&gt;since we have mentioned these environment variable here, we need a way to access this variables wherever we are using these variables, for that we need to replace all references to your environment variables in settings.py&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;...
import os
from pathlib import Path
import environ
.
.
env = environ.Env(DEBUG=bool, ALLOWED_HOSTS=list)
env_file = BASE_DIR / '.env'               # path to your .env file

environ.Env.read_env(env_file=env_file, overwrite=True)
...
SECRET_KEY = env('SECRET_KEY')
...
DEBUG = env('DEBUG')
...
ALLOWED_HOSTS = env('ALLOWED_HOSTS')
...
if DEBUG:
    DATABASES = {
        'default': {
            'ENGINE': 'django.db.backends.sqlite3',
            'NAME': BASE_DIR / 'db.sqlite3',
        }
    }
else:
    DATABASES = {
        'default': {
            'ENGINE': 'django.db.backends.postgresql_psycopg2',
            'NAME': env('DB_NAME'),
            'USER': env('DB_USER'),
            'PASSWORD': env('DB_PASSWORD'),
            'HOST': env('DB_HOST'),
            'PORT': env('DB_PORT'),
        }
    }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;blockquote&gt;
&lt;p&gt;IMPORTANT: Add your .env file to &lt;code&gt;.gitignore&lt;/code&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Now you are ready to push your code 🚀.&lt;/p&gt;

&lt;h2&gt;
  
  
  Reference
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://alicecampkin.medium.com/how-to-set-up-environment-variables-in-django-f3c4db78c55f" rel="noopener noreferrer"&gt;How to set up environment variables in Django&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Feel free to share! 👍&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>python</category>
      <category>django</category>
      <category>webdev</category>
    </item>
    <item>
      <title>Build a web-app with servlet</title>
      <dc:creator>priyanshu pardhi</dc:creator>
      <pubDate>Fri, 15 Jul 2022 11:13:11 +0000</pubDate>
      <link>https://dev.to/priyanshupardhi/build-a-web-app-with-servlet-p16</link>
      <guid>https://dev.to/priyanshupardhi/build-a-web-app-with-servlet-p16</guid>
      <description>&lt;h3&gt;
  
  
  &lt;strong&gt;Topics covered&lt;/strong&gt;
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Calling a servlet from a html page&lt;/li&gt;
&lt;li&gt;Making a servlet ( a class which extends HttpServlet )&lt;/li&gt;
&lt;li&gt;Getting values from the html page using HttpServletRequest and HttpServletResponse&lt;/li&gt;
&lt;li&gt;Mapping servlet class&lt;/li&gt;
&lt;li&gt;doPost() method&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Make a simple web-app with &lt;strong&gt;servlet&lt;/strong&gt;&lt;br&gt;
we are going to make an app which adds two numbers.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Prerequisite:&lt;/strong&gt; Basic knowledge about Java.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;IDE (preferably Eclipse for Java EE Developers).&lt;/li&gt;
&lt;li&gt;Web Server (preferably Tomcat).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Step 0:&lt;/strong&gt; Before making the project, let's configure tomcat server.&lt;/p&gt;

&lt;p&gt;If you don't see server tab in the bottom panel.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;go to Window ( in the navigation bar ).&lt;/li&gt;
&lt;li&gt;click on show view&lt;/li&gt;
&lt;li&gt;click on server&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Now you get server in the bottom panel, click to configure tomcat, (you need to download the tomcat core and source code and unzip the files) select the version and path.&lt;/p&gt;

&lt;p&gt;If you want to check you can go to &lt;em&gt;http:8080&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;Now server is configured.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 1:&lt;/strong&gt; Start Eclipse, Open a new "Dynamic Webapp" Project.&lt;/p&gt;

&lt;p&gt;as shown below.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Create a package com.app&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.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%2Fo34zrwewkz29x85aorxt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.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%2Fo34zrwewkz29x85aorxt.png" alt=" " width="800" height="506"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 2:&lt;/strong&gt; Create a HTML file where you will write the HTML code.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Make a simple form with two input the first one is for 1st no. &amp;amp; 2nd  for 2nd no and one submit button.&lt;/li&gt;
&lt;li&gt;In HTML form, inside the form tag define action attribute and assign the add path to it i.e &lt;code&gt;action="add”&lt;/code&gt;.
&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;form&lt;/span&gt; &lt;span class="na"&gt;method=&lt;/span&gt;&lt;span class="s"&gt;"get"&lt;/span&gt; &lt;span class="na"&gt;action=&lt;/span&gt;&lt;span class="s"&gt;"add"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;
  Enter 1st no.  &lt;span class="nt"&gt;&amp;lt;input&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"text"&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"num1"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;br&amp;gt;&lt;/span&gt;
  Enter 2nd no. &lt;span class="nt"&gt;&amp;lt;input&lt;/span&gt; &lt;span class="na"&gt;type=&lt;/span&gt;&lt;span class="s"&gt;"text"&lt;/span&gt; &lt;span class="na"&gt;name=&lt;/span&gt;&lt;span class="s"&gt;"num2"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&amp;lt;br&amp;gt;&lt;/span&gt;
 &lt;span class="nt"&gt;&amp;lt;button&lt;/span&gt; &lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Submit&lt;span class="nt"&gt;&amp;lt;/button&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/form&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;&lt;strong&gt;Step 3:&lt;/strong&gt; Create a Servlet or a class which extends HttpServlet (import necessary packages)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Define a service method which takes two parameters HttpServletRequest as req and HttpServletRespone as res.&lt;/li&gt;
&lt;li&gt;Now write the logic for addition of two numbers inside the method
&lt;/li&gt;
&lt;/ul&gt;
&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight java"&gt;&lt;code&gt;&lt;span class="kt"&gt;int&lt;/span&gt; &lt;span class="n"&gt;i&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nc"&gt;Integer&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;parseInt&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="n"&gt;req&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;getParameter&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"num1"&lt;/span&gt;&lt;span class="o"&gt;));&lt;/span&gt;
&lt;span class="kt"&gt;int&lt;/span&gt; &lt;span class="n"&gt;j&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nc"&gt;Integer&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;parseInt&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="n"&gt;req&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;getParameter&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="s"&gt;"num2"&lt;/span&gt;&lt;span class="o"&gt;));&lt;/span&gt;  

&lt;span class="kt"&gt;int&lt;/span&gt; &lt;span class="n"&gt;k&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;i&lt;/span&gt;&lt;span class="o"&gt;+&lt;/span&gt;&lt;span class="n"&gt;j&lt;/span&gt;&lt;span class="o"&gt;;&lt;/span&gt;

&lt;span class="c1"&gt;//Print the out put&lt;/span&gt;
&lt;span class="nc"&gt;PrintWriter&lt;/span&gt; &lt;span class="n"&gt;out&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;res&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;getWriter&lt;/span&gt;&lt;span class="o"&gt;();&lt;/span&gt;
&lt;span class="n"&gt;out&lt;/span&gt;&lt;span class="o"&gt;.&lt;/span&gt;&lt;span class="na"&gt;println&lt;/span&gt;&lt;span class="o"&gt;(&lt;/span&gt;&lt;span class="n"&gt;k&lt;/span&gt;&lt;span class="o"&gt;);&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;


&lt;p&gt;But wait a minute, server doesn’t know which servlet to call so it will give an error.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Step 4:&lt;/strong&gt; This can be resolved by mapping the HTML page with servlet, for that we will use “web.xml”  or deployment descriptor file.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight xml"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;servlet&amp;gt;&lt;/span&gt;
   &lt;span class="nt"&gt;&amp;lt;servlet-name&amp;gt;&lt;/span&gt;My servlet&lt;span class="nt"&gt;&amp;lt;/servlet-name&amp;gt;&lt;/span&gt;
   &lt;span class="nt"&gt;&amp;lt;servlet-class&amp;gt;&lt;/span&gt;com.app.AppServlet&lt;span class="nt"&gt;&amp;lt;/servlet-class&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/servlet&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;servlet-mapping&amp;gt;&lt;/span&gt;
   &lt;span class="nt"&gt;&amp;lt;servlet-name&amp;gt;&lt;/span&gt;My servlet&lt;span class="nt"&gt;&amp;lt;/servlet-name&amp;gt;&lt;/span&gt;
   &lt;span class="nt"&gt;&amp;lt;url-pattern&amp;gt;&lt;/span&gt;/add&lt;span class="nt"&gt;&amp;lt;/url-pattern&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/servlet-mapping&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now start the server and input two no and submit &lt;/p&gt;

&lt;p&gt;and you got the answer 👍&lt;/p&gt;

&lt;p&gt;But again there is one problem over here the data which we are sending is exposed in url, is there any method to hide that &amp;amp; why it is exposed?&lt;/p&gt;

&lt;p&gt;It’s because the form default method is “get” we need to convert that to “post” i.e. &lt;code&gt;method=”post”&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;However you can change HTTP method parameter from browser inspect tool, so to solve the problem totally we need to change the method in servlet instead of using service method we will use &lt;strong&gt;doPost&lt;/strong&gt; method for post method. This will solve the problem.&lt;/p&gt;

&lt;p&gt;Source code: &lt;a href="https://github.com/priyanshupardhi/ServletApp" rel="noopener noreferrer"&gt;https://github.com/priyanshupardhi/ServletApp&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;🎉Hurray!🎉  you just created your first &lt;strong&gt;Web App&lt;/strong&gt; using &lt;strong&gt;Servlet&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>java</category>
      <category>webapp</category>
      <category>servlet</category>
    </item>
    <item>
      <title>What is Maven?</title>
      <dc:creator>priyanshu pardhi</dc:creator>
      <pubDate>Tue, 21 Jun 2022 08:55:46 +0000</pubDate>
      <link>https://dev.to/priyanshupardhi/what-is-maven-2k9p</link>
      <guid>https://dev.to/priyanshupardhi/what-is-maven-2k9p</guid>
      <description>&lt;p&gt;&lt;strong&gt;Maven&lt;/strong&gt; is project management tool.&lt;/p&gt;

&lt;p&gt;In java, whenever you want to make a project you need lots of third party libraries such as MySql connector.&lt;/p&gt;

&lt;p&gt;If you are not using maven in your project you need to download lots of external jar files and manually configure those into your project also updating that is a tiresome process that’s why we need &lt;strong&gt;maven&lt;/strong&gt; which make developer’s life easier&lt;/p&gt;

&lt;p&gt;A maven project basically consist of :-&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;POM file&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;In which we have :- &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Group ID (let say “com.app”), define your package&lt;/li&gt;
&lt;li&gt;Artifact ID (let say “demo”), represent your project name&lt;/li&gt;
&lt;li&gt;Package (com.app.demo.web)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;How do you mention in the pom.xml file that I want this dependency in my project? for that you need to add XML code for that dependency&lt;/p&gt;

&lt;p&gt;To get the xml code for a particular module:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;just go to &lt;a href="https://mvnrepository.com/" rel="noopener noreferrer"&gt;MVN Repository&lt;/a&gt;
&lt;/li&gt;
&lt;li&gt;Search for desired module &lt;/li&gt;
&lt;li&gt;Select the available version, check xml code for that module/ dependency&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;When you are working with maven you need to have internet connection &lt;/p&gt;

&lt;p&gt;If you are using any dependency for the first time.&lt;/p&gt;

&lt;p&gt;First, it will check for that dependencies in Local Repo, if not found, it will check download/fetch from Remote Repo&lt;/p&gt;

&lt;p&gt;Alternate of Maven is &lt;strong&gt;Gradle&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Thanks for reading&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>java</category>
      <category>maven</category>
      <category>tooling</category>
    </item>
    <item>
      <title>What is servlet?</title>
      <dc:creator>priyanshu pardhi</dc:creator>
      <pubDate>Wed, 06 Apr 2022 13:44:25 +0000</pubDate>
      <link>https://dev.to/priyanshupardhi/what-is-servlet-51m3</link>
      <guid>https://dev.to/priyanshupardhi/what-is-servlet-51m3</guid>
      <description>&lt;h1&gt;
  
  
  What is Servlet?
&lt;/h1&gt;

&lt;p&gt;Imagine we have a client machine and a server. Client requests the server for a page (let's say). Now this page could be static, or it could be dynamic (built at runtime). When client requests the server, it will be like I don't have any page, so you have to build that web page at runtime, than the  request goes to an helper application also know as &lt;strong&gt;Web Container&lt;/strong&gt;, e.g. Tomcat, JBoss, Websphere, etc).&lt;/p&gt;

&lt;p&gt;Web Container contains "Servlet", &lt;strong&gt;a java file which can take the request from client on the internet, process it and respond with a response as a HTML page&lt;/strong&gt;. Servlet will convert the client request, fetch the values, process the information and return a HTML page.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.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%2Fqb83ykdivfa8slfpeofp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.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%2Fqb83ykdivfa8slfpeofp.png" alt=" " width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Web Container also contains “Deployment Descriptor”, &lt;strong&gt;a simple XML document that is used to map URL to the servlet&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;But how do you create a servlet?&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;A servlet is a normal java class which extends HttpServlet&lt;/strong&gt;, since we want this servlet features ( request, process, response ) the response from servlet will be in HTML format (you can also send the response in JSON/XML format) now that HTML page will go from your server to client machine in the format of Response Object.&lt;/p&gt;

</description>
      <category>java</category>
      <category>servlet</category>
      <category>webdev</category>
      <category>backend</category>
    </item>
    <item>
      <title>CODE JOURNAL</title>
      <dc:creator>priyanshu pardhi</dc:creator>
      <pubDate>Sun, 03 Jan 2021 07:00:58 +0000</pubDate>
      <link>https://dev.to/priyanshupardhi/code-journal-452n</link>
      <guid>https://dev.to/priyanshupardhi/code-journal-452n</guid>
      <description>&lt;p&gt;This journal can be used for taking notes in class or to record snippets of code you will be using frequently.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;strong&gt;Personal Site:&lt;/strong&gt; CODE JOURNAL
&lt;/h2&gt;

&lt;p&gt;A blog where you can share your learning during #100DaysOfCode. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How I built it&lt;/strong&gt;&lt;br&gt;
I'll be using HTML,CSS,JS AND NODE.JS.&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;DAY 1 of Hackathon&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

</description>
      <category>dohackathon</category>
      <category>webdev</category>
    </item>
  </channel>
</rss>
