<?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: Md.Syed Enam</title>
    <description>The latest articles on DEV Community by Md.Syed Enam (@sayedenam).</description>
    <link>https://dev.to/sayedenam</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%2F780438%2F0a62a5a8-23f2-4cb8-98ab-954488b6fa25.png</url>
      <title>DEV Community: Md.Syed Enam</title>
      <link>https://dev.to/sayedenam</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sayedenam"/>
    <language>en</language>
    <item>
      <title>Dynamic and responsive: A Shopify eCommerce website</title>
      <dc:creator>Md.Syed Enam</dc:creator>
      <pubDate>Thu, 26 Dec 2024 05:59:53 +0000</pubDate>
      <link>https://dev.to/sayedenam/dynamic-and-responsive-a-shopify-ecommerce-website-32mj</link>
      <guid>https://dev.to/sayedenam/dynamic-and-responsive-a-shopify-ecommerce-website-32mj</guid>
      <description>&lt;p&gt;Dynamic and responsive: A Shopify eCommerce website built from scratch! Perfecting the art of online shopping experiences. 🛍️✨ #WebDesign #EcommerceExpert&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>ecommerce</category>
      <category>webdesign</category>
    </item>
    <item>
      <title>JWT, Mongoose, MySQL</title>
      <dc:creator>Md.Syed Enam</dc:creator>
      <pubDate>Sun, 26 Dec 2021 07:52:39 +0000</pubDate>
      <link>https://dev.to/sayedenam/jwt-mongoose-mysql-3ji9</link>
      <guid>https://dev.to/sayedenam/jwt-mongoose-mysql-3ji9</guid>
      <description>&lt;p&gt;JWT&lt;/p&gt;

&lt;p&gt;JWT is full form JSON Web Tocken.it is transmitting information JSON object. it's data can be verified and trusted with digitally signed.JWTs can be signed using a secret key.&lt;/p&gt;

&lt;p&gt;Mongoose&lt;/p&gt;

&lt;p&gt;Mongoose is an Object Data Modeling library for MongoDB. it's work like manager for relationship between data, provides schema validation. &lt;/p&gt;

&lt;p&gt;MySQL&lt;/p&gt;

&lt;p&gt;Its a relationship base Database. It is a open source Database. It’s using is very easy. MySQL database is an assemblage of relationship data. it's organized table, columns and rows.it's free of cost and available as an open-source for anyone to use with any application. In this application SQL, programming language is used to CRUD as MySQL supported with basic SQL queries.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
    <item>
      <title>CRUD Operations
</title>
      <dc:creator>Md.Syed Enam</dc:creator>
      <pubDate>Sun, 26 Dec 2021 07:51:28 +0000</pubDate>
      <link>https://dev.to/sayedenam/crud-operations-8po</link>
      <guid>https://dev.to/sayedenam/crud-operations-8po</guid>
      <description>&lt;p&gt;CRUD is full form CREATE, READ, UPDATE and DELETE. it's a four functions that are called an application of computer programming. Create means it's work for data insert in DB, Read means it's collect data from DB then it's showing with fetch data for frontend user. Update means it's work for existing data update for user. Delete means it's work for delete data from Data base.&lt;/p&gt;

&lt;p&gt;A Company or Organizations keep data, accounts info, payment information and anything data do storage in database of customer. This system will do organized into a database. There data storage system will two things one is relational dabase and other one is non relational database. The application used to verious database which include Oracle Database, Microsoft SQL Server, MySQL and Others.&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>programming</category>
    </item>
    <item>
      <title>JSX</title>
      <dc:creator>Md.Syed Enam</dc:creator>
      <pubDate>Sat, 25 Dec 2021 13:45:48 +0000</pubDate>
      <link>https://dev.to/sayedenam/jsx-4h6</link>
      <guid>https://dev.to/sayedenam/jsx-4h6</guid>
      <description>&lt;p&gt;It is syntax extension to javascript. JSX remind template lnaguage. but it completely take pawoer of javascript.&lt;/p&gt;

&lt;p&gt;JSX produces React "elements". We will explore rendaering to DOM in the next section.&lt;/p&gt;

&lt;p&gt;Embedding Expressions in JSX&lt;/p&gt;

&lt;p&gt;In the example below, we declare a variable called name and then use it inside JSX by wrapping it in curly braces:&lt;/p&gt;

&lt;p&gt;const name = 'Sayed Enam';&lt;br&gt;
const element = &lt;/p&gt;
&lt;h1&gt;Hello, {name}&lt;/h1&gt;;

&lt;p&gt;ReactDOM.render(&lt;br&gt;
  element,&lt;br&gt;
  document.getElementById('root')&lt;br&gt;
);&lt;/p&gt;

</description>
      <category>javascript</category>
      <category>webdev</category>
      <category>programming</category>
      <category>react</category>
    </item>
    <item>
      <title>How React props work</title>
      <dc:creator>Md.Syed Enam</dc:creator>
      <pubDate>Sat, 25 Dec 2021 13:43:38 +0000</pubDate>
      <link>https://dev.to/sayedenam/how-react-props-work-3ajj</link>
      <guid>https://dev.to/sayedenam/how-react-props-work-3ajj</guid>
      <description>&lt;p&gt;React props allow you to send data numbers, stings, functions, objects, arrays etc. if have many components then you can pass data fromone components to another components.Pass props between componnets, you would add them when the componnt is called wehn callingon a regular javascript fucntion.&lt;/p&gt;

&lt;p&gt;import React from 'react';&lt;br&gt;
import ReactDOM from 'react-dom';&lt;/p&gt;


&lt;p&gt;function PercentageStat({ label, score = 0, total = Math.max(1, score) }) {&lt;br&gt;&lt;br&gt;
  return (&lt;br&gt;&lt;br&gt;
    &lt;/p&gt;
&lt;br&gt;&lt;br&gt;
      &lt;h6&gt;{ label }&lt;/h6&gt;
&lt;br&gt;&lt;br&gt;
      &lt;span&gt;{ Math.round(score / total * 100) }%&lt;/span&gt;&lt;br&gt;&lt;br&gt;
    &lt;br&gt;&lt;br&gt;
  )&lt;br&gt;&lt;br&gt;
}


&lt;p&gt;function App() {&lt;br&gt;&lt;br&gt;
  return (&lt;br&gt;&lt;br&gt;
    &lt;/p&gt;
&lt;br&gt;&lt;br&gt;
      &lt;h1&gt;Male Population&lt;/h1&gt;
&lt;br&gt;&lt;br&gt;
      &lt;br&gt;&lt;br&gt;
        &lt;br&gt;&lt;br&gt;
        &lt;br&gt;&lt;br&gt;
        &lt;br&gt;&lt;br&gt;
        &lt;br&gt;&lt;br&gt;
      &lt;br&gt;&lt;br&gt;
    &lt;br&gt;&lt;br&gt;
  )&lt;br&gt;&lt;br&gt;
}

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