<?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: Naitik Pitroda</title>
    <description>The latest articles on DEV Community by Naitik Pitroda (@naitik_pitroda).</description>
    <link>https://dev.to/naitik_pitroda</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%2F679573%2F4e98ff1f-155c-43a2-9c2a-0db8d4b7a491.jpeg</url>
      <title>DEV Community: Naitik Pitroda</title>
      <link>https://dev.to/naitik_pitroda</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/naitik_pitroda"/>
    <language>en</language>
    <item>
      <title>MongoDb Vs Sql</title>
      <dc:creator>Naitik Pitroda</dc:creator>
      <pubDate>Mon, 30 Aug 2021 18:20:42 +0000</pubDate>
      <link>https://dev.to/naitik_pitroda/mongodb-vs-sql-58ed</link>
      <guid>https://dev.to/naitik_pitroda/mongodb-vs-sql-58ed</guid>
      <description>&lt;h3&gt;
  
  
  Author &lt;a class="mentioned-user" href="https://dev.to/naitik_pitroda"&gt;@naitik_pitroda&lt;/a&gt;

&lt;/h3&gt;

&lt;h5&gt;
  
  
  #Explaining in very simple language to beginner's.
&lt;/h5&gt;

&lt;p&gt;To understand this database languages. Let me give two pics which can clear your vision.&lt;/p&gt;

&lt;h2&gt;
  
  
  SQL
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--reaPWPAX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vuaglcx5wncl3zs2o7pz.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--reaPWPAX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vuaglcx5wncl3zs2o7pz.jpg" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
Show's SQl database(structured data Eg:1)&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;It's very easy to find data when it's structured &amp;amp; organized in a good manner, which we can see in SQL. It's quiet tough to find data in a unstructured manner. We can easily find out book in this room.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;In SQL databases, data is stored in form of traditional 2 dimensional row-column structure&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Relational database:  E.g. EmployeeID column which would be a primary key of Employee table would be present as a foreign key in the Payments table, thus connecting the two tables with the referential property. This relationship ensures that there is no payment entry of an employee whose details are not present in the master Employee table. This is why SQL databases like MySQL are also called relational databases. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The architecture of SQL databases like MySQL is governed by the principles of ACID property.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;ACID stands for Atomicity, Consistency, Isolation, and Durability. These properties focus on the consistency and reliability of the transaction done in the database.&lt;/p&gt;



&lt;h2&gt;
  
  
  MongoDb
&lt;/h2&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--CB8AjzSf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/o91u25w3xbe5s4l8yvs2.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--CB8AjzSf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/o91u25w3xbe5s4l8yvs2.jpg" alt="Alt Text"&gt;&lt;/a&gt; &lt;br&gt;
Show's MongoDB database(unstructured data Eg:2) &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It's difficult to find data when it's unstructured &amp;amp; improper, . It's quiet tough to find data in a unstructured manner. Like finding book in this pic.&lt;/li&gt;
&lt;li&gt;In MongoDB rich data document model is followed, which allows storage of any type of data and fast working.&lt;/li&gt;
&lt;li&gt;On the other hand, in MongoDB, we cannot establish such a relationship between the unstructured data of the collections. Hence it is considered as a non-relational database&lt;/li&gt;
&lt;li&gt;MongoDB is built on the principles of CAP Theorem which focuses on Consistency, Availability, and Partition. Unlike the ACID properties of SQL databases, CAP theorem focuses on availability of data in the case of MongoDB.&lt;/li&gt;
&lt;/ul&gt;





&lt;h3&gt;
  
  
  Personally, suggested to start with SQl then create some basic projects using it. Afterwards move to MongoDb for advance level and for full stack development. SQL is easy to learn and code compare to MongoDb. Begineer's should start with SQl.
&lt;/h3&gt;





&lt;h4&gt;
  
  
  -Atlast what every you learn you have to Implement it according to large or small scale projects requirement's.
&lt;/h4&gt;

</description>
      <category>mongodb</category>
      <category>sql</category>
      <category>database</category>
    </item>
    <item>
      <title>Top 5 Youtube channel's to learn coding</title>
      <dc:creator>Naitik Pitroda</dc:creator>
      <pubDate>Tue, 24 Aug 2021 10:58:53 +0000</pubDate>
      <link>https://dev.to/naitik_pitroda/top-5-youtube-channel-s-to-learn-coding-5ffg</link>
      <guid>https://dev.to/naitik_pitroda/top-5-youtube-channel-s-to-learn-coding-5ffg</guid>
      <description>&lt;h4&gt;
  
  
  Author &lt;a class="mentioned-user" href="https://dev.to/naitik_pitroda"&gt;@naitik_pitroda&lt;/a&gt;

&lt;/h4&gt;

&lt;h2&gt;
  
  
  1) Edureka
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;It has covered almost all software domains. All concept's are explained in very simple and understanding way.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/user/edurekaIN"&gt;Edureka &lt;/a&gt;
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--XkvKsdvr--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cyyyylb8v4g8m0eknarq.png" alt="ehuwebgj"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  2) Apna college
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;In this channel you can get all lectures in Hindi language with animation content.&lt;/li&gt;
&lt;li&gt;Animation content helps student to learn properly with great understanding and clear's all concept deeply.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/channel/UCBwmMxybNva6P_5VmxjzwqA"&gt;Apna College &lt;/a&gt;
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--TfS1R_Dx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/p7mhy003yc17r8f9uq2i.png" alt="Alt Text"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  3) Code with Harry
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Harry bhai is one man army taught all programming languages in Hindi language in very quiet and patience way to students.&lt;/li&gt;
&lt;li&gt;In this channel you can find all the language with live projects building in Hindi language in simple words.&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/channel/UCeVMnSShP_Iviwkknt83cww"&gt;Code with Harry &lt;/a&gt;
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--K9AYLNHn--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/1prukhpcxerzn93dc8s0.png" alt="Alt Text"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  4) Anuj bhaiya
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Anuj bhaiya is working in "Amazon" as an software developer. &lt;/li&gt;
&lt;li&gt;He is an self-taught programmer, giving roadmaps to students to help them and show them direction.&lt;/li&gt;
&lt;li&gt;Checkout his playlist to know more &lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/channel/UC58_wzhvJta3hDSPvRLDAqg"&gt;Anuj bhaiya &lt;/a&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--yNVFQkyk--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/z10bn37i5nkpnlhnedhm.png" alt="Alt Text"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  5) Akshay saini
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Akshay saini is having great experience in tech companies like Uber, amazon, etc.&lt;/li&gt;
&lt;li&gt;From my personal preference if you want to learn JavaScript then you should definitely try this channel. He has covered all topics in depth understanding from zero to hero.
&lt;/li&gt;
&lt;li&gt;
&lt;a href="https://www.youtube.com/channel/UC3N9i_KvKZYP4F84FPIzgPQ"&gt;Akshay saini &lt;/a&gt;
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--N6i8Lclj--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/f3pqhewpqai7s8ghajp4.png" alt="Alt Text"&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>freecoding</category>
      <category>programming</category>
      <category>youtube</category>
      <category>freeresource</category>
    </item>
    <item>
      <title>Top 3 Platform to Practice  coding problems...!!!!</title>
      <dc:creator>Naitik Pitroda</dc:creator>
      <pubDate>Tue, 24 Aug 2021 10:23:31 +0000</pubDate>
      <link>https://dev.to/naitik_pitroda/top-3-platform-to-practice-coding-problems-4587</link>
      <guid>https://dev.to/naitik_pitroda/top-3-platform-to-practice-coding-problems-4587</guid>
      <description>&lt;h3&gt;
  
  
  ~Author @codenaitik
&lt;/h3&gt;

&lt;h2&gt;
  
  
  1) LEETCODE
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Leetcode is one of the most top coding platform providing 'FREE' coding problems to solve.&lt;/li&gt;
&lt;li&gt;It also provide frequently asked questions from Big tech company likes, google, Facebook, Netflix, amazon and many more.&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You can solve problems according to your interest and topics With comes in different levels.  &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://leetcode.com/"&gt;Leetcode&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--HXXoKPMI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5q2urwb2ysj4dukpu48a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--HXXoKPMI--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5q2urwb2ysj4dukpu48a.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  2) Codechef
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Codechef is another platform which provides free coding question to practise.
-Codechef also organize coding contest for free, It have weekly contest, long question challenges, medium challenges also.&lt;/li&gt;
&lt;li&gt;Solving each question correctly increase your rating in that platform and standout among other's. On certain level of rating you get stars. Star's shows the level of abililty you are having to solve any problem. 
Benefits:- &lt;/li&gt;
&lt;li&gt;It's an standard platform through it many company directly shortlist candidate for internship/interview. &lt;/li&gt;
&lt;li&gt;It also help candidate to crack coding test's.&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You can solve problems according to your interest and topics With comes in different levels.  &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://leetcode.com/"&gt;Leetcode&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--R7xMX8pR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jh80jp1flbu9pj55mxxk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--R7xMX8pR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/jh80jp1flbu9pj55mxxk.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  3) Hackerrank
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Hackerrank is an platform for beginners through it students can start their journey.&lt;/li&gt;
&lt;li&gt;It provide questions according to your level of solving question.&lt;/li&gt;
&lt;li&gt;It also provide certification's exam, after completing it successfully you will get certificate from this platform's.&lt;/li&gt;
&lt;li&gt;&lt;p&gt;On solving each problem successfully passed out from all cases it will give you points, after getting certain amount of points it leads to gain an start and increase your ranking among other's. You will also get an specific badge with star for you performance.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;a href="https://www.hackerrank.com/dashboard"&gt;Hackerrank&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--qOUA-nBb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ng97negp9suo8ggi8b4s.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--qOUA-nBb--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ng97negp9suo8ggi8b4s.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>competitiveprogramming</category>
    </item>
    <item>
      <title>Top 5 CSS tools every developer must know</title>
      <dc:creator>Naitik Pitroda</dc:creator>
      <pubDate>Tue, 24 Aug 2021 09:13:38 +0000</pubDate>
      <link>https://dev.to/naitik_pitroda/top-5-css-tools-every-developer-must-know-22b7</link>
      <guid>https://dev.to/naitik_pitroda/top-5-css-tools-every-developer-must-know-22b7</guid>
      <description>&lt;p&gt;## Author @codenaitik &lt;/p&gt;

&lt;h1&gt;
  
  
  1) Glassmorphism
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;Creating glassmorphism is quit difficult and boring thing for an developer.&lt;/li&gt;
&lt;li&gt;So using this tool you can easily create glassmorphism and also customize it according to your need and requirement. &lt;/li&gt;
&lt;li&gt;click here for it: 
&lt;a href="https://glassmorphism.com/"&gt;Glassmorphism&lt;/a&gt;
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--mPTHcJZd--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/50ug5zdefurl96hr1ors.png" alt="Alt Text"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  2) Neumorphism
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;Neumorphism is meant to be soft on the eyes. It calls for minimal color contrast and very few pops of color. &lt;/li&gt;
&lt;li&gt;So using this tool you can easily create Neumorphism and also customize it according to your need and requirement. &lt;/li&gt;
&lt;li&gt;click here for it: 
&lt;a href="https://neumorphism.com/"&gt;Neumorphism&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--wwvfPzMR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9g8kasm5t6iypjcbo51n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--wwvfPzMR--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/9g8kasm5t6iypjcbo51n.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  3) Fancy Border Radius
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;A visual generator to build organic looking shapes with the help of CSS3 border-radius property. &lt;/li&gt;
&lt;li&gt;So using this tool you can easily create different types of fancy border radius quickly and easily and also customize it according to your need and requirement. &lt;/li&gt;
&lt;li&gt;click here for it: 
&lt;a href="https://9elements.github.io/fancy-border-radius/"&gt;Fancy Border Radius&lt;/a&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--m5SF38a9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/zfy4jjgvzkxll4nu7mmb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--m5SF38a9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/zfy4jjgvzkxll4nu7mmb.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h1&gt;
  
  
  4) Waitanimate
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;Waitanimate it's an very important tool to animate things.&lt;/li&gt;
&lt;li&gt; WAIT! Animate calculates updated keyframe percentages given a wait time meaning you can insert a delay between each animation iteration using pure CSS, without JavaScript.&lt;/li&gt;
&lt;li&gt;So using this tool you can easily set time, origin-direction(x,y), time delay and you also customize it according to your need and requirement. &lt;/li&gt;
&lt;li&gt;click here :- 
&lt;a href="https://waitanimate.wstone.io/"&gt;Waitanimate&lt;/a&gt;
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--eYo1_PH_--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/cw98blygktcc5303l36u.png" alt="Alt Text"&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h1&gt;
  
  
  5) CSS3 Button Generator
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt; CSS3 Button Generator this tools helps you to make button and adding more features inside it .&lt;/li&gt;
&lt;li&gt;You can customize your button according too your need's like background, border, hover, box, color,etc. After customizing it will create an link take it and post it in your code.
&lt;/li&gt;
&lt;li&gt;click here :- 
&lt;a href="https://css3buttongenerator.com/"&gt;CSS3 Button Generator&lt;/a&gt;
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--zaN20j7c--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/k07adfkn4odwe4tb9lkg.png" alt="Alt Text"&gt;
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>css</category>
      <category>webdev</category>
      <category>webtools</category>
    </item>
  </channel>
</rss>
