<?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>Forem: siddharth pandey</title>
    <description>The latest articles on Forem by siddharth pandey (@creativesiddharth).</description>
    <link>https://forem.com/creativesiddharth</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%2F540856%2Fb9b86346-1fc6-458b-99a1-db4ce94abbfc.jpeg</url>
      <title>Forem: siddharth pandey</title>
      <link>https://forem.com/creativesiddharth</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/creativesiddharth"/>
    <language>en</language>
    <item>
      <title>CSS Neomorphism design -easy steps to create</title>
      <dc:creator>siddharth pandey</dc:creator>
      <pubDate>Mon, 15 Feb 2021 13:57:37 +0000</pubDate>
      <link>https://forem.com/creativesiddharth/css-neomorphism-design-easy-steps-to-create-3ohe</link>
      <guid>https://forem.com/creativesiddharth/css-neomorphism-design-easy-steps-to-create-3ohe</guid>
      <description>&lt;p&gt;Original Post - &lt;a href="https://www.codingtouch.in/how-to-create-css-neomorphism-design/"&gt;Click Here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Hello coders! in this post we will see some steps to create a CSS Neomorphism design very easily. We are going to design a neomorphism login form, that help us to easily understand the concept of Nemorphism design. So let’s see what we are going to create in this post (the snapshot is given above).&lt;/p&gt;

&lt;h2&gt;
  
  
  Steps to create a neomorphism design
&lt;/h2&gt;

&lt;p&gt;Here are some steps that help us to create a neomorphism design.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Choose same background color for both parent(page) and child element (like a box).&lt;/li&gt;
&lt;li&gt;The elements should have two shadow – dark and light.&lt;/li&gt;
&lt;li&gt;If we choose rounded edges then design will look pretty cool.&lt;/li&gt;
&lt;li&gt;Elements can have an optional subtle border to improve contrast and make the edges a bit sharper.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;So let’s start coding our Neomorphism Form…&lt;/p&gt;

&lt;h3&gt;
  
  
  HTML code
&lt;/h3&gt;

&lt;p&gt;Below is the HTML code to design a neomorphism design.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;&amp;lt;div class="container"&amp;gt;
        &amp;lt;div class="title"&amp;gt;Login&amp;lt;/div&amp;gt;
        &amp;lt;div class="inputs"&amp;gt;
            &amp;lt;label&amp;gt;EMAIL&amp;lt;/label&amp;gt;
            &amp;lt;input type="email" placeholder="enter your email here" /&amp;gt;
            &amp;lt;label&amp;gt;PASSWORD&amp;lt;/label&amp;gt;
            &amp;lt;input type="password" placeholder="enter your password" /&amp;gt;
            &amp;lt;button type="submit"&amp;gt;LOGIN&amp;lt;/button&amp;gt;
        &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  CSS code
&lt;/h3&gt;

&lt;p&gt;Now the real work begins to design a Neomorphism design.&lt;/p&gt;

&lt;p&gt;First let see basic css code that help us to arrange our elements on the center of the page.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;body {
        margin: 0;
        width: 100vw;
        height: 100vh;
        background: #ecf0f3;
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        place-items: center;
        overflow: hidden;
        font-family: poppins;
 }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now we start adding the neomorphism feature to our form container.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.container {
        position: relative;
        width: 350px;
        height: 400px;
        border-radius: 20px;
        padding: 40px;
        box-sizing: border-box;
        background: #ecf0f3;
        box-shadow: 14px 14px 20px #cbced1, -14px -14px 20px white;
 }
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now it’s time to do CSS for others elements like title, inputs, labels and button.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;.title {
        margin-top: 10px;
        font-weight: 900;
        font-size: 1.8rem;
        color: #1DA1F2;
        letter-spacing: 1px;
        }

.inputs {
        text-align: left;
        margin-top: 30px;
}

label, input, button {
        display: block;
        width: 100%;
        padding: 0;
        border: none;
        outline: none;
        box-sizing: border-box;
}

label {
        margin-bottom: 4px;
        }

label:nth-of-type(2) {
        margin-top: 12px;
}

input::placeholder {
        color: gray;
}

input {
        background: #ecf0f3;
        padding: 10px;
        padding-left: 20px;
        height: 50px;
        font-size: 14px;
        border-radius: 50px;
        box-shadow: inset 6px 6px 6px #cbced1, inset -6px -6px 6px white;
}

button {
        margin-top: 20px;
        background: #1DA1F2;
        height: 40px;
        border-radius: 20px;
        cursor: pointer;
        font-weight: 900;
        box-shadow: 6px 6px 6px #cbced1, -6px -6px 6px white;
        transition: 0.5s;
}

button:hover {
        box-shadow: none;
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Last word
&lt;/h2&gt;

&lt;p&gt;Hope you enjoy this short tutorial on CSS Neomorphism.&lt;br&gt;
Must visit- &lt;a href="https://www.codingtouch.in"&gt;Our BLog&lt;/a&gt;&lt;/p&gt;

</description>
      <category>css</category>
      <category>webdev</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>what is web scraping | complete guide</title>
      <dc:creator>siddharth pandey</dc:creator>
      <pubDate>Sun, 20 Dec 2020 10:22:15 +0000</pubDate>
      <link>https://forem.com/creativesiddharth/what-is-web-scraping-complete-guide-4ekh</link>
      <guid>https://forem.com/creativesiddharth/what-is-web-scraping-complete-guide-4ekh</guid>
      <description>&lt;h4&gt;
  
  
  &lt;a href="https://www.codingtouch.in/web-scraping/"&gt;ORIGINAL POST&lt;/a&gt;
&lt;/h4&gt;

&lt;p&gt;in this time we and our business should be on internet means we should use internet to grow our business. In this article which topic we have chooses has a connection with Business. Yes we are talking about Web Scraping . In this post we will see what is and what its use.&lt;/p&gt;

&lt;h1&gt;
  
  
  Web Scraping
&lt;/h1&gt;

&lt;p&gt;Web scraping is a technique that is used to fetch data from a website. For gathering data of a website we use this technique that is called as Web Scraping . We use this technique for many reasons .&lt;/p&gt;

&lt;h1&gt;
  
  
  Uses of this technique
&lt;/h1&gt;

&lt;p&gt;we use web scraping can be used of own or business purpose. we use web scraping for following reasons-&lt;/p&gt;

&lt;h3&gt;
  
  
  Lead generation
&lt;/h3&gt;

&lt;p&gt;Lead generation is refers to the process of identifying potential customer for your product or service. to generate lead we collect contact detail like email, mobile number of customers to grow our business . For this purpose we use web scraping.&lt;/p&gt;

&lt;h3&gt;
  
  
  Reputation and brand monitoring
&lt;/h3&gt;

&lt;p&gt;To actively build brand intelligence and monitoring perception we use it . For understanding how customer feel about our product or services and how to give them a better products or services we use it.&lt;/p&gt;

&lt;h3&gt;
  
  
  machine Learning
&lt;/h3&gt;

&lt;p&gt;Machine learning is about teaching computers how to learn from data to make decisions .For machine learning e requires a lot of data . For gathering a lot of data we use a lot of web pages of websites.&lt;br&gt;
For gathering a lot of data from various website pages we use scraping.&lt;/p&gt;

&lt;h3&gt;
  
  
  Analysing competitors
&lt;/h3&gt;

&lt;p&gt;If your are in a business then you should know what our competitors are doing and not. To extract competitors data , customers etc in a structured and usable format we use it.&lt;/p&gt;

&lt;h3&gt;
  
  
  building a price comparison website
&lt;/h3&gt;

&lt;p&gt;If you are a website developer and thinking about to develop a website that compare prices between various sites then you have to collect product details like price , description , and images for analysing we should use.&lt;/p&gt;

&lt;h3&gt;
  
  
  Other uses
&lt;/h3&gt;

&lt;p&gt;Financial data analysis&lt;br&gt;
building product catalog&lt;br&gt;
map compliance&lt;br&gt;
social media analyze&lt;br&gt;
news monitoring&lt;br&gt;
For SEO etc.&lt;/p&gt;

</description>
      <category>computerscience</category>
      <category>python</category>
      <category>javascript</category>
      <category>programming</category>
    </item>
    <item>
      <title>React js learning path for 2020 | perfect guide</title>
      <dc:creator>siddharth pandey</dc:creator>
      <pubDate>Tue, 15 Dec 2020 13:18:28 +0000</pubDate>
      <link>https://forem.com/creativesiddharth/react-js-learning-path-for-2020-perfect-guide-33l8</link>
      <guid>https://forem.com/creativesiddharth/react-js-learning-path-for-2020-perfect-guide-33l8</guid>
      <description>&lt;p&gt;For Oringinal Post &lt;a href="https://www.codingtouch.in/react-js-learning-path-in-2020/"&gt;click here&lt;/a&gt;&lt;br&gt;
Hello guys , in this post we are going to discuss about a very useful topic what is the perfect React js learning path in 2020. If you are a beginner are just going to start journey with a trending JavaScript Library called as React js, then it is the right place.&lt;/p&gt;

&lt;h1&gt;
  
  
  Topics going to cover
&lt;/h1&gt;

&lt;p&gt;Let’s see what are the topics that we are going to cover in this post. First we will see what is React js. Then we will see what is the perfect roadmap to learn React efficiently.&lt;/p&gt;

&lt;h1&gt;
  
  
  What is React js
&lt;/h1&gt;

&lt;p&gt;React js is a JavaScript library introduce by the facebook . ReactJS ia an open source JavaScript library used to develop User Interfaces. React JS is concerned with the component that utilizes the JavaScript with a HTML like syntax called JSX. It is a component based JavaScript library.&lt;/p&gt;

&lt;p&gt;To learn more about React js checkout my previous post – Introduction to React&lt;/p&gt;

&lt;h1&gt;
  
  
  React js learning path
&lt;/h1&gt;

&lt;p&gt;We are divided the roadmap or learning path in three sub-path. In first part we discuss the topics from where we will start our journey with React.js. Then we will see the Advance topics and last , we will discuss some eco systems of React js.&lt;/p&gt;

&lt;h2&gt;
  
  
  Fundamentals
&lt;/h2&gt;

&lt;p&gt;To master the fundamentals , we should learn following topics –&lt;/p&gt;

&lt;p&gt;*How to create a React app or How to initialize a React Project.&lt;br&gt;
*What is a Component.&lt;br&gt;
*Types of component such as – Functional Component and Class based component.&lt;br&gt;
*JSX&lt;br&gt;
*Props and State&lt;br&gt;
*Conditional rendering&lt;br&gt;
*List and key&lt;br&gt;
*Lifecycle Methods&lt;br&gt;
*Building some simple Forms&lt;/p&gt;

&lt;h2&gt;
  
  
  Advance
&lt;/h2&gt;

&lt;p&gt;After complete above fundamentals topics, we should start learning these topics-&lt;br&gt;
*Context API&lt;br&gt;
*Higher Ordered Component&lt;br&gt;
*Rendering Props&lt;br&gt;
*Refs&lt;br&gt;
*Error boundaries&lt;br&gt;
*Making HTTP Request&lt;br&gt;
*Some Hooks such as – useEffect , UseState , useRef , useMemo ,&lt;br&gt;
Custom Hooks&lt;/p&gt;

&lt;h2&gt;
  
  
  EcoSystem
&lt;/h2&gt;

&lt;p&gt;After complete above Advance topics, we should start learning these topics-&lt;br&gt;
*State management – Redux or Mobx&lt;br&gt;
*Styling – Styled component / Material UI /Tailwind CSS or *Reactstrap&lt;br&gt;
*Routing – React Router&lt;br&gt;
*Form – Formik&lt;br&gt;
*Testing – JEST or React testing Library&lt;/p&gt;

&lt;h2&gt;
  
  
  Next Step
&lt;/h2&gt;

&lt;p&gt;After completing above topics properly you can start learning these technologies-&lt;br&gt;
*Gatsby&lt;br&gt;
*Next.js&lt;br&gt;
*React Native&lt;/p&gt;

&lt;h1&gt;
  
  
  Conclusion
&lt;/h1&gt;

&lt;p&gt;So finally we have seen a complete learning path for React js. I hope now will master the React js.&lt;/p&gt;

&lt;p&gt;Thank you.&lt;/p&gt;

&lt;p&gt;Keep Coding , Keep Learning.&lt;/p&gt;

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