<?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: PROTIK</title>
    <description>The latest articles on DEV Community by PROTIK (@protik).</description>
    <link>https://dev.to/protik</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%2F308898%2F579c8dc6-09a1-4d0e-8f37-9ae6dfff26a6.jpg</url>
      <title>DEV Community: PROTIK</title>
      <link>https://dev.to/protik</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/protik"/>
    <language>en</language>
    <item>
      <title>[EXCEPTIONAL POST] What do you think?</title>
      <dc:creator>PROTIK</dc:creator>
      <pubDate>Tue, 13 Oct 2020 07:02:11 +0000</pubDate>
      <link>https://dev.to/protik/exceptional-post-what-do-you-think-5hf1</link>
      <guid>https://dev.to/protik/exceptional-post-what-do-you-think-5hf1</guid>
      <description>&lt;p&gt;A recent study found that getting married in old age increases the risk of divorce.  According to the study, the divorce rate in the United States increases by 5% annually as a result of marriage after 32 years.  However, previous studies have shown that those who marry late have a much lower divorce rate.  "This is a big change," said Nicholas Wolfinger, a researcher at the University of Utah in the United States.  “As far as I know, the risk of divorce is due to.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Do you have any success blogging history?</title>
      <dc:creator>PROTIK</dc:creator>
      <pubDate>Tue, 16 Jun 2020 17:39:52 +0000</pubDate>
      <link>https://dev.to/protik/do-you-have-any-success-blogging-history-jbf</link>
      <guid>https://dev.to/protik/do-you-have-any-success-blogging-history-jbf</guid>
      <description>&lt;p&gt;I am new in blogging. How can I get more traffic in my blog?&lt;br&gt;
Guest blogging can be a better solution I think.&lt;br&gt;
But which blogging platform is the best for beginner?&lt;br&gt;
You know- entrepreneur or inc is not suitable for beginners.&lt;br&gt;
Do you have something new?&lt;/p&gt;

</description>
      <category>blog</category>
      <category>marketing</category>
      <category>promotion</category>
      <category>newblog</category>
    </item>
    <item>
      <title>How to create Random Password Generator using PHP?</title>
      <dc:creator>PROTIK</dc:creator>
      <pubDate>Wed, 10 Jun 2020 10:22:16 +0000</pubDate>
      <link>https://dev.to/protik/how-to-create-random-password-generator-using-php-hm</link>
      <guid>https://dev.to/protik/how-to-create-random-password-generator-using-php-hm</guid>
      <description>&lt;div class="ltag__stackexchange--container"&gt;
  &lt;div class="ltag__stackexchange--title-container"&gt;
    
      &lt;div class="ltag__stackexchange--title"&gt;
        &lt;h1&gt;
          &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pTF_nE4a--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/stackoverflow-logo-b42691ae545e4810b105ee957979a853a696085e67e43ee14c5699cf3e890fb4.svg" alt=""&gt;
            &lt;a href="https://stackoverflow.com/questions/62300513/how-to-create-random-password-generator-using-php" rel="noopener noreferrer"&gt;
               How to create Random Password Generator using PHP?
            &lt;/a&gt;
        &lt;/h1&gt;
        &lt;div class="ltag__stackexchange--post-metadata"&gt;
          &lt;span&gt;Jun 10 '20&lt;/span&gt;
            &lt;span&gt;Comments: 1&lt;/span&gt;
            &lt;span&gt;Answers: 0&lt;/span&gt;
        &lt;/div&gt;
      &lt;/div&gt;
      &lt;a class="ltag__stackexchange--score-container" href="https://stackoverflow.com/questions/62300513/how-to-create-random-password-generator-using-php" rel="noopener noreferrer"&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--5MiFESHx--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/stackexchange-arrow-up-eff2e2849e67d156181d258e38802c0b57fa011f74164a7f97675ca3b6ab756b.svg" alt=""&gt;
        &lt;div class="ltag__stackexchange--score-number"&gt;
          0
        &lt;/div&gt;
        &lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Rk_a5QFN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://practicaldev-herokuapp-com.freetls.fastly.net/assets/stackexchange-arrow-down-4349fac0dd932d284fab7e4dd9846f19a3710558efde0d2dfd05897f3eeb9aba.svg" alt=""&gt;
      &lt;/a&gt;
    
  &lt;/div&gt;
  &lt;div class="ltag__stackexchange--body"&gt;
    
&lt;p&gt;This can generate random password.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;?php
function randomPassword() {
    $alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
    $pass = array();
    $alphaLength = strlen($alphabet) - 1;
    for ($i = 0; $i &amp;lt; 26; $i++) {
        $n = rand(0, $alphaLength);
        $pass[] = $alphabet[$n];
    }
    return implode($pass);
}

echo randomPassword();
?&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;But I want to save this password…&lt;/p&gt;
    
  &lt;/div&gt;
  &lt;div class="ltag__stackexchange--btn--container"&gt;
    
      &lt;a href="https://stackoverflow.com/questions/62300513/how-to-create-random-password-generator-using-php" rel="noopener noreferrer"&gt;Open Full Question&lt;/a&gt;
    
  &lt;/div&gt;
&lt;/div&gt;


</description>
    </item>
    <item>
      <title>[Suggest Me] How can I promote my newly blog?</title>
      <dc:creator>PROTIK</dc:creator>
      <pubDate>Tue, 26 May 2020 11:43:50 +0000</pubDate>
      <link>https://dev.to/protik/suggest-me-how-can-i-promote-my-newly-blog-2654</link>
      <guid>https://dev.to/protik/suggest-me-how-can-i-promote-my-newly-blog-2654</guid>
      <description>&lt;p&gt;I am totally new in blogging. I have no fan or followers in facebook or youtube. How can I reach to my readers?&lt;/p&gt;

</description>
      <category>blog</category>
      <category>promote</category>
      <category>marketing</category>
      <category>article</category>
    </item>
    <item>
      <title>[SUGGEST ME] What type of work a Network Analyst do?</title>
      <dc:creator>PROTIK</dc:creator>
      <pubDate>Fri, 13 Mar 2020 19:11:29 +0000</pubDate>
      <link>https://dev.to/protik/suggest-me-what-type-of-work-a-network-analyst-do-1fb8</link>
      <guid>https://dev.to/protik/suggest-me-what-type-of-work-a-network-analyst-do-1fb8</guid>
      <description>&lt;p&gt;Give me some real life example please.&lt;/p&gt;

</description>
      <category>networkanalyst</category>
      <category>computerscience</category>
      <category>engineering</category>
      <category>career</category>
    </item>
    <item>
      <title>Is there any WordPress theme or HTML template which looks like Dev.to</title>
      <dc:creator>PROTIK</dc:creator>
      <pubDate>Tue, 07 Jan 2020 03:08:04 +0000</pubDate>
      <link>https://dev.to/protik/is-there-any-wordpress-theme-or-html-template-which-looks-like-dev-to-43j1</link>
      <guid>https://dev.to/protik/is-there-any-wordpress-theme-or-html-template-which-looks-like-dev-to-43j1</guid>
      <description>&lt;p&gt;I am looking for a theme like dev.to&lt;/p&gt;

</description>
      <category>wordpress</category>
      <category>theme</category>
      <category>template</category>
    </item>
    <item>
      <title>Which Programming Language should I learn in 2020?</title>
      <dc:creator>PROTIK</dc:creator>
      <pubDate>Sun, 05 Jan 2020 12:53:56 +0000</pubDate>
      <link>https://dev.to/protik/which-programming-language-should-i-learn-in-2020-3o0i</link>
      <guid>https://dev.to/protik/which-programming-language-should-i-learn-in-2020-3o0i</guid>
      <description>&lt;p&gt;I know all the language becomes easy when we learn one. But to keep continue all of then it's too difficult. Because all the language has different functionalities and libraries.&lt;br&gt;
So according to growth rate, resources I want to ask you SIR, which language should I continue in 2020?&lt;/p&gt;

</description>
      <category>programming</category>
      <category>php</category>
      <category>java</category>
      <category>python</category>
    </item>
  </channel>
</rss>
