<?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: codeblogmoney</title>
    <description>The latest articles on DEV Community by codeblogmoney (@cbmgit).</description>
    <link>https://dev.to/cbmgit</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%2F298449%2Fd9699ccf-1e2b-4da1-893b-34d08579b5f2.png</url>
      <title>DEV Community: codeblogmoney</title>
      <link>https://dev.to/cbmgit</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/cbmgit"/>
    <language>en</language>
    <item>
      <title>What is XML?</title>
      <dc:creator>codeblogmoney</dc:creator>
      <pubDate>Wed, 15 Jun 2022 12:54:47 +0000</pubDate>
      <link>https://dev.to/cbmgit/what-is-xml-56cg</link>
      <guid>https://dev.to/cbmgit/what-is-xml-56cg</guid>
      <description>&lt;p&gt;&lt;strong&gt;What is XML?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;XML (Extensible Markup Language) is a markup language similar to HTML, but without predefined tags to use. Instead, you define your own tags designed specifically for your needs. This is a powerful way to store data in a format that can be stored, searched, and shared. Most importantly, since the fundamental format of XML is standardized, if you share or transmit XML across systems or platforms, either locally or over the internet, the recipient can still parse the data due to the standardized XML syntax.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;XML Sample:&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;&amp;lt;note&amp;gt;
  &amp;lt;to&amp;gt;Tove&amp;lt;/to&amp;gt;
  &amp;lt;from&amp;gt;Jani&amp;lt;/from&amp;gt;
  &amp;lt;heading&amp;gt;Reminder&amp;lt;/heading&amp;gt;
  &amp;lt;body&amp;gt;Don't forget me this weekend!&amp;lt;/body&amp;gt;
&amp;lt;/note&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Use online tools which helps to validate, view and analyze XML data.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://jsonformatter.org/xml-formatter"&gt;XML Formatter&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--739xBigw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/4b6usy5e5i3ilgcc5poi.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--739xBigw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/4b6usy5e5i3ilgcc5poi.png" alt="XML Formatter" width="880" height="277"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why XML is used?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;XML has a variety of uses for Web, e-business, and portable applications.&lt;/p&gt;

&lt;p&gt;The following are some of the many applications for which XML is useful:&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Web publishing: *&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;XML allows you to create interactive pages, allows the customer to customize those pages, and makes creating e-commerce applications more intuitive. With XML, you store the data once and then render that content for different viewers or devices based on style sheet processing using an Extensible Style Language (XSL)/XSL Transformation (XSLT) processor.&lt;br&gt;
Web searching and automating Web tasks: XML defines the type of information contained in a document, making it easier to return useful results when searching the Web:&lt;br&gt;
For example, using HTML to search for books authored by Tom Brown is likely to return instances of the term 'brown' outside of the context of author. Using XML restricts the search to the correct context (for example, the information contained in the  tag) and returns only the information that you want. By using XML, Web agents and robots (programs that automate Web searches or other tasks) are more efficient and produce more useful results.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;General applications:&lt;/strong&gt; &lt;br&gt;
XML provides a standard method to access information, making it easier for applications and devices of all kinds to use, store, transmit, and display data.&lt;br&gt;
e-business applications: XML implementations make electronic data interchange (EDI) more accessible for information interchange, business-to-business transactions, and business-to-consumer transactions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Metadata applications:&lt;/strong&gt; &lt;br&gt;
XML makes it easier to express metadata in a portable, reusable format.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Pervasive computing:&lt;/strong&gt; &lt;br&gt;
XML provides portable and structured information types for display on pervasive (wireless) computing devices such as personal digital assistants (PDAs), cellular phones, and others. For example, WML (Wireless Markup Language) and VoiceXML are currently evolving standards for describing visual and speech-driven wireless device interfaces.&lt;/p&gt;

&lt;p&gt;I recommend &lt;a href="https://codebeautify.org/xmlvalidator"&gt;XML Validator&lt;/a&gt; to validate XML to makes your life easier. &lt;/p&gt;

</description>
      <category>xml</category>
      <category>devops</category>
      <category>tools</category>
    </item>
    <item>
      <title>HOW to Parse JSON Online?</title>
      <dc:creator>codeblogmoney</dc:creator>
      <pubDate>Wed, 15 Jun 2022 02:10:30 +0000</pubDate>
      <link>https://dev.to/cbmgit/how-to-parse-json-online-4h8d</link>
      <guid>https://dev.to/cbmgit/how-to-parse-json-online-4h8d</guid>
      <description>&lt;p&gt;A common use of JSON is to exchange data to/from a web server.&lt;/p&gt;

&lt;p&gt;When receiving data from a web server, the data is always a string.&lt;/p&gt;

&lt;p&gt;The JSON.parse() method parses a JSON string, constructing the JavaScript value or object described by the string. An optional reviver function can be provided to perform a transformation on the resulting object before it is returned.&lt;/p&gt;

&lt;p&gt;Here are few tools can be used to parse JSON online:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;a href="https://jsonformatter.org/json-parser"&gt;JSON Parser&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://codebeautify.org/jsonviewer"&gt;JSON Viewer&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--pF-4uEdX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/gb93rj0jjbcipb4qg4v2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pF-4uEdX--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/gb93rj0jjbcipb4qg4v2.png" alt="JSON Parser" width="880" height="346"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>json</category>
      <category>tools</category>
      <category>webdev</category>
    </item>
    <item>
      <title>How to Convert REM to PX?</title>
      <dc:creator>codeblogmoney</dc:creator>
      <pubDate>Tue, 07 Jun 2022 13:18:23 +0000</pubDate>
      <link>https://dev.to/cbmgit/how-to-convert-rem-to-px-2nd2</link>
      <guid>https://dev.to/cbmgit/how-to-convert-rem-to-px-2nd2</guid>
      <description>&lt;p&gt;There are many Font Size units to configure sizes of the fonts in CSS such as:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;
&lt;strong&gt;em&lt;/strong&gt; Relative to the font-size of the element (2em means 2 times the size of the current font) &lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ex&lt;/strong&gt; Relative to the x-height of the current font (rarely used)
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;ch&lt;/strong&gt; Relative to the width of the "0" (zero)
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;rem&lt;/strong&gt; Relative to font-size of the root element
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;vw&lt;/strong&gt; Relative to 1% of the width of the viewport*
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;vh&lt;/strong&gt; Relative to 1% of the height of the viewport* &lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;vmin&lt;/strong&gt; Relative to 1% of viewport's* smaller dimension &lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;vmax&lt;/strong&gt; Relative to 1% of viewport's* larger dimension
&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;%&lt;/strong&gt; Relative to the parent element&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;So It's better to use a tool which can helps to easily converts REM to Pixels:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://codebeautify.org/rem-to-px-converter"&gt;REM to PX Converter&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--OAWO8TKf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/3t7omi6s5tjcea1dl388.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--OAWO8TKf--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/3t7omi6s5tjcea1dl388.png" alt="REM to PX" width="880" height="504"&gt;&lt;/a&gt;&lt;br&gt;
I found this tools to make UI designer's life easy.&lt;/p&gt;

&lt;p&gt;Here are more CSS Unit Converter Tools Online can be found: &lt;a href="https://codebeautify.org/css-unit-converter-tools"&gt;https://codebeautify.org/css-unit-converter-tools&lt;/a&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--pJdrmbkW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/e0nspjxkrtr6t0y47wny.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pJdrmbkW--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/e0nspjxkrtr6t0y47wny.png" alt="CSS Unit Converter" width="880" height="183"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>rem</category>
      <category>px</category>
      <category>font</category>
      <category>css</category>
    </item>
    <item>
      <title>How to generate Random Flags of Countries ?</title>
      <dc:creator>codeblogmoney</dc:creator>
      <pubDate>Sat, 04 Jun 2022 16:24:54 +0000</pubDate>
      <link>https://dev.to/cbmgit/how-to-generate-random-flags-of-countries--42kd</link>
      <guid>https://dev.to/cbmgit/how-to-generate-random-flags-of-countries--42kd</guid>
      <description>&lt;p&gt;We’ll use a random flag generator to create some flags that you might find somewhere in the world (more specifically, countries) but are not the flags of any real country.&lt;/p&gt;

&lt;p&gt;To make this random flag generator tool It has 195 country flags. To us it all you have to do is choose how many you would like to see at a time and click the green generate function.&lt;/p&gt;

&lt;p&gt;A picture of the flags and the names of the countries are returned each time.&lt;/p&gt;

&lt;p&gt;For each section, include the following:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;a clear introduction on what is being asked for&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;possible pro's and con's of AI writers in this section&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;how AI writers can be used to solve these problems&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;an example of where AI writers have been used successfully.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Here is a tool which helps: &lt;a href="https://codebeautify.org/random-flag-generator"&gt;Random Flag Generator&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--6_CJ_Idz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vo4i9vkh50glky179pzf.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--6_CJ_Idz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/vo4i9vkh50glky179pzf.png" alt="Image description" width="880" height="317"&gt;&lt;/a&gt;&lt;br&gt;
 Simply hit the button below to generate flags at random, which are returned with an image.&lt;/p&gt;

</description>
      <category>flag</category>
      <category>random</category>
      <category>country</category>
      <category>webdev</category>
    </item>
    <item>
      <title>How to generate random EMOJIs</title>
      <dc:creator>codeblogmoney</dc:creator>
      <pubDate>Thu, 21 Apr 2022 03:45:46 +0000</pubDate>
      <link>https://dev.to/cbmgit/how-to-generate-random-emojis-940</link>
      <guid>https://dev.to/cbmgit/how-to-generate-random-emojis-940</guid>
      <description>&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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm1a1qbit2mx3oxbb9o05.png" 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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm1a1qbit2mx3oxbb9o05.png" alt="Random Emoji Generator"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;IF you've got wandered onto this article trying to find random emojis, you've got come to the proper place. I have identified  the Random Emoji Generator with the specific reason of making lists of random emojis. Using this loose on line device is easy. Simply imply the wide variety of emojis you need to be displayed, then click on at the generate button. The wide variety of emojis you asked will immediately appear.&lt;/p&gt;

&lt;p&gt;While trying to find random emojis is not some thing this is usually carried out via way of means of maximum people, there are some of motives a person can also additionally need to do this. Below you may discover a few of the extra not unusual place motives others have used this generator withinside the past.&lt;/p&gt;

&lt;p&gt;Here is a tool which helps to generate the Random Emojis.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://codebeautify.org/random-emoji-generator" rel="noopener noreferrer"&gt;Random Emoji Generator&lt;/a&gt;&lt;/p&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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqipp7d0zuvw6tvqeudqf.png" 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%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqipp7d0zuvw6tvqeudqf.png" alt="10 Random Generated Emojis"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;It's fun to play with emojis. &lt;a href="https://codebeautify.org/random-emoji-generator" rel="noopener noreferrer"&gt;https://codebeautify.org/random-emoji-generator&lt;/a&gt;&lt;/p&gt;

</description>
      <category>random</category>
      <category>emoji</category>
      <category>fun</category>
      <category>tools</category>
    </item>
    <item>
      <title>Generate Random IPs using online tool</title>
      <dc:creator>codeblogmoney</dc:creator>
      <pubDate>Sun, 06 Mar 2022 02:59:22 +0000</pubDate>
      <link>https://dev.to/cbmgit/generate-random-ips-using-online-tool-15ha</link>
      <guid>https://dev.to/cbmgit/generate-random-ips-using-online-tool-15ha</guid>
      <description>&lt;h2&gt;
  
  
  What is IP?
&lt;/h2&gt;

&lt;p&gt;IP is short for Internet Protocol. IP is a set of rules that govern how data travels from one machine to another in the internet.&lt;/p&gt;

&lt;p&gt;IP, short for "Internet protocol," is a set of rules that govern how data travels from one machine to another on the Internet.&lt;/p&gt;

&lt;p&gt;The Internet Protocol (IP) is an Internet protocol that provides a numerical label to computers so they can communicate in the network. IP is the most popular protocol on the internet.&lt;/p&gt;

&lt;p&gt;There are a number of things that an IP address offers, but there are two main reasons why they exist. First, it gives computers names and second, it serves as a way to figure out where each device is. Second issue is more complicated than the first; there are many ways of figuring out where a device (or computer) is located or what network it belongs to.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Using &lt;a href="https://codebeautify.org/generate-random-ip"&gt;Random IP Generator&lt;/a&gt;&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--TZtOKZ6l--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/sazknqb9dqbnlc41309a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--TZtOKZ6l--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/sazknqb9dqbnlc41309a.png" alt="Random IP Generator" width="880" height="392"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Steps to Generate Random IPs.
&lt;/h2&gt;

&lt;p&gt;Step 1: click on &lt;a href="https://codebeautify.org/generate-random-ip"&gt;https://codebeautify.org/generate-random-ip&lt;/a&gt;&lt;br&gt;
Steps 2: Use configuration options on the right side of the screen.&lt;br&gt;
Step 3: Click on Generate Green Button.&lt;/p&gt;

</description>
      <category>network</category>
      <category>beginners</category>
      <category>devops</category>
    </item>
    <item>
      <title>How to test HTML in Real Time?</title>
      <dc:creator>codeblogmoney</dc:creator>
      <pubDate>Sun, 06 Mar 2022 02:51:50 +0000</pubDate>
      <link>https://dev.to/cbmgit/how-to-test-html-in-real-time-kh3</link>
      <guid>https://dev.to/cbmgit/how-to-test-html-in-real-time-kh3</guid>
      <description>&lt;h2&gt;
  
  
  What is HTML?
&lt;/h2&gt;

&lt;p&gt;HTML is the core of all web work. Though developers have tried to make it into a more content-specific language, HTML is still a very difficult language to learn and use.&lt;/p&gt;

&lt;p&gt;That is why the Real time HTML Editor was created. This editor will take care of all your coding, and can save you hours of frustration when creating content for you website or blog post.&lt;/p&gt;

&lt;p&gt;—&lt;/p&gt;

&lt;h2&gt;
  
  
  Real Time HTML Editor
&lt;/h2&gt;

&lt;p&gt;The Real Time HTML Editor is a web developer's best friend. It is a web-based platform that allows developers to preview and edit various types of markup tags, like HTML, CSS and JavaScript.&lt;/p&gt;

&lt;p&gt;Nowadays, there are many different platforms that provide the same functionality of the real time HTML editor but they are not built as robustly as this one. The wonders of this tool lie in its ability to provide developers with instant feedback on their code syntax.&lt;/p&gt;

&lt;p&gt;Here is &lt;a href="https://codebeautify.org/real-time-html-editor"&gt;Real Time HTML Editor&lt;/a&gt; or &lt;a href="https://codebeautify.org/htmlviewer"&gt;HTML Viewer&lt;/a&gt;..&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--WNoIs2Ok--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6c8x4oney5u5nvpncs5e.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--WNoIs2Ok--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/6c8x4oney5u5nvpncs5e.png" alt="Real Time HTML Editor" width="880" height="329"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  How to use this tool.
&lt;/h2&gt;

&lt;p&gt;Step 1: Go to &lt;a href="https://codebeautify.org/real-time-html-editor"&gt;https://codebeautify.org/real-time-html-editor&lt;/a&gt;&lt;br&gt;
Step 2: Paste your HTML or Strat writing HTML code.&lt;br&gt;
Step 3: This tool has live preview. It helps developer to see the progress in live and to rectify the mistake.&lt;/p&gt;

</description>
      <category>html</category>
      <category>css</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Why JSON is So Popular?</title>
      <dc:creator>codeblogmoney</dc:creator>
      <pubDate>Mon, 17 Jan 2022 09:42:41 +0000</pubDate>
      <link>https://dev.to/cbmgit/why-json-is-so-popular-1j8e</link>
      <guid>https://dev.to/cbmgit/why-json-is-so-popular-1j8e</guid>
      <description>&lt;p&gt;Introduction: What is JSON?&lt;/p&gt;

&lt;p&gt;JSON is a lightweight data interchange format that uses human-readable text to represent objects. JSON provides flexibility for developers and it’s interoperable with other languages.&lt;/p&gt;

&lt;p&gt;More than 40% sites uses JSON and almost 95% API returns and receive data in some form of JSON.&lt;/p&gt;

&lt;p&gt;If you are new to json follow &lt;a href="https://codebeautify.org/blog/how-to-create-json-file/"&gt;How to Make a JSON File?&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;JSON was originally intended as a light-weight competitor of XML which was designed in the 1990s for large network systems such as Web applications, but JSON has become more popular due to its simplicity and efficiency.&lt;/p&gt;

&lt;p&gt;Use &lt;a href="https://codebeautify.org/jsonviewer"&gt;JSON Viewer&lt;/a&gt; to test and view JSON in tree mode.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--tjPIziVJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/yns45dveds1ozge7ossc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--tjPIziVJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/yns45dveds1ozge7ossc.png" alt="JSON Formatter and Beautifier" width="880" height="338"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;JSON vs. XML&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;JSON is a relatively new data format. It is a text-based, human readable and language independent data-interchange format. XML has been around for longer and is more complicated than JSON. XML was designed to be human readable and it has a tree-like structure that can be parsed by software.&lt;/p&gt;

&lt;p&gt;XML is more verbose than JSON because it needs to specify the type of data in each node whereas JSON just needs to specify the type of data at the top level.&lt;/p&gt;

&lt;p&gt;XML uses angle brackets while JSON uses curly braces.&lt;/p&gt;

&lt;p&gt;Use &lt;a href="https://codebeautify.org/xmlviewer"&gt;XML Viewer&lt;/a&gt; to test and preview XML in tree mode.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Advantage of JSON&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;It serialize / store data in an array so creating and transferring get simpler. That’s why JSON is the most used for sharing data of any size even audio, video, etc.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;JSON's syntax is very easy to use and very small and light-weighted that’s the reason that it executes and response in a faster way.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;All browser support JSON compatibility with the operating systems. All Browser and Languages has JSON Parser available. &lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>javascript</category>
      <category>programming</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Share Mp3 as Secret Message</title>
      <dc:creator>codeblogmoney</dc:creator>
      <pubDate>Sun, 16 Jan 2022 17:24:49 +0000</pubDate>
      <link>https://dev.to/cbmgit/share-mp3-as-secret-message-3nbc</link>
      <guid>https://dev.to/cbmgit/share-mp3-as-secret-message-3nbc</guid>
      <description>&lt;p&gt;It's easy to share text, string, JSON, or XML data over the web. But what if there is a need to share an MP3 file as a secret message?&lt;/p&gt;

&lt;p&gt;You can use MP3 to base64 string tool do that.&lt;/p&gt;

&lt;p&gt;I have been using MP3 to base64 tools to generate the base64 string and send it via DM in tweeter or on Facebook.&lt;/p&gt;

&lt;p&gt;This website helps to do achieve to send a mp3 file as string. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://codebeautify.org/mp3-to-base64-converter"&gt;https://codebeautify.org/mp3-to-base64-converter&lt;/a&gt; &lt;/p&gt;

&lt;p&gt;Open above link and upload the mp3 file. This tool will generate the base64 string.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--P8jS3Zdy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/iue4ixdgb3lnea48roon.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--P8jS3Zdy--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/iue4ixdgb3lnea48roon.png" alt="Image description" width="880" height="474"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I hope it helps. &lt;/p&gt;

</description>
    </item>
    <item>
      <title>How to Vibrate Phone using Online Vibrating Tool?</title>
      <dc:creator>codeblogmoney</dc:creator>
      <pubDate>Sun, 16 Jan 2022 17:09:37 +0000</pubDate>
      <link>https://dev.to/cbmgit/how-to-vibrate-phone-using-online-vibrating-tool-3a8i</link>
      <guid>https://dev.to/cbmgit/how-to-vibrate-phone-using-online-vibrating-tool-3a8i</guid>
      <description>&lt;p&gt;Sometime there is dire need to test the phone vibration on any mobile phone. &lt;/p&gt;

&lt;p&gt;Instead of going to any setting and figure out how to vibrate any phone, here is an tool which can do it for you.&lt;/p&gt;

&lt;p&gt;You can google &lt;strong&gt;Online Vibration Simulator&lt;/strong&gt; or click on this link &lt;/p&gt;

&lt;p&gt;&lt;a href="https://codebeautify.org/online-vibration-simulator"&gt;https://codebeautify.org/online-vibration-simulator&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;This link only works only on mobile.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--unbdVWBC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/e3mfh4jtysgkfkgk3hry.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--unbdVWBC--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/e3mfh4jtysgkfkgk3hry.png" alt="Image description" width="712" height="1213"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;User can click on the preference provide in this site. Either user can vibrate phone for 1 or 2 or 5 second.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
