<?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: Shreyansh Panchal</title>
    <description>The latest articles on DEV Community by Shreyansh Panchal (@izshreyansh).</description>
    <link>https://dev.to/izshreyansh</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%2F72390%2Ff6700e26-f6a2-48b5-ba78-26b0ed47020d.jpg</url>
      <title>DEV Community: Shreyansh Panchal</title>
      <link>https://dev.to/izshreyansh</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/izshreyansh"/>
    <language>en</language>
    <item>
      <title>Disconnected from FTP Server</title>
      <dc:creator>Shreyansh Panchal</dc:creator>
      <pubDate>Wed, 10 Jun 2020 10:18:52 +0000</pubDate>
      <link>https://dev.to/izshreyansh/disconnected-from-ftp-server-4pd</link>
      <guid>https://dev.to/izshreyansh/disconnected-from-ftp-server-4pd</guid>
      <description>&lt;p&gt;If your server has &lt;code&gt;vsftpd&lt;/code&gt; utility &amp;amp; you're trying to connect to your server using filezilla. This snippet is for you.&lt;br&gt;
If you're facing &lt;code&gt;ECONNABORTED&lt;/code&gt; error in filezilla please read ahead.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Open up filezilla&lt;/li&gt;
&lt;li&gt;On windows press &lt;code&gt;ctrl + s&lt;/code&gt; to open site settings&lt;/li&gt;
&lt;li&gt;Select the site you're facing problems with. Click on the third tab &lt;code&gt;transfer settings&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Under transfer mode: Please select &lt;code&gt;Active&lt;/code&gt;.&lt;/li&gt;
&lt;li&gt;Click on connect again.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;I hope it helped :)&lt;/p&gt;

</description>
      <category>econnaborted</category>
      <category>filezilla</category>
      <category>ftp</category>
    </item>
    <item>
      <title>Regex Cheat Sheet</title>
      <dc:creator>Shreyansh Panchal</dc:creator>
      <pubDate>Mon, 01 Jun 2020 13:30:43 +0000</pubDate>
      <link>https://dev.to/izshreyansh/regex-cheat-sheet-6pk</link>
      <guid>https://dev.to/izshreyansh/regex-cheat-sheet-6pk</guid>
      <description>&lt;p&gt;Found this really useful regex cheatsheet.&lt;br&gt;
Checkout their full cheatsheet at &lt;a href="http://www.rexegg.com/regex-quickstart.html#chars"&gt;Rexegg Cheatsheet&lt;/a&gt;&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;&lt;tbody&gt;
&lt;tr&gt;
&lt;th class="w100"&gt;Character&lt;/th&gt;
&lt;th class="w200"&gt;Legend&lt;/th&gt;
&lt;th class="w150"&gt;Example&lt;/th&gt;
&lt;th class="w150"&gt;Sample Match&lt;/th&gt;
&lt;/tr&gt;
&lt;tr class="brown"&gt;
&lt;td&gt;&lt;span class="mono"&gt;\t&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;Tab&lt;/td&gt;
&lt;td&gt;T\t\w{2}&lt;/td&gt;
&lt;td&gt;T     ab&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class="beige"&gt;
&lt;td&gt;&lt;span class="mono"&gt;\r&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;Carriage return character&lt;/td&gt;
&lt;td&gt;see below&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class="brown"&gt;
&lt;td&gt;&lt;span class="mono"&gt;\n&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;Line feed character&lt;/td&gt;
&lt;td&gt;see below&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class="beige"&gt;
&lt;td&gt;&lt;span class="mono"&gt;\r\n&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;Line separator on Windows&lt;/td&gt;
&lt;td&gt;AB\r\nCD&lt;/td&gt;
&lt;td&gt;AB&lt;br&gt;CD&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class="brown"&gt;
&lt;td&gt;&lt;span class="mono"&gt;\N&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;Perl, PCRE (C, PHP, R…): one character that is not a line break&lt;/td&gt;
&lt;td&gt;\N+&lt;/td&gt;
&lt;td&gt;ABC&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class="beige"&gt;
&lt;td&gt;&lt;span class="mono"&gt;\h&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;Perl, PCRE (C, PHP, R…), Java: one horizontal whitespace character: tab or Unicode space separator&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class="brown"&gt;
&lt;td&gt;&lt;span class="mono"&gt;\H&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;One character that is not a horizontal whitespace&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class="beige"&gt;
&lt;td&gt;&lt;span class="mono"&gt;\v&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;.NET, JavaScript, Python, Ruby: vertical tab&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class="brown"&gt;
&lt;td&gt;&lt;span class="mono"&gt;\v&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;Perl, PCRE (C, PHP, R…), Java: one vertical whitespace character: line feed, carriage return, vertical tab, form feed, paragraph or line separator&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class="beige"&gt;
&lt;td&gt;&lt;span class="mono"&gt;\V&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;Perl, PCRE (C, PHP, R…), Java: any character that is not a vertical whitespace&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;tr class="brown"&gt;
&lt;td&gt;&lt;span class="mono"&gt;\R&lt;/span&gt;&lt;/td&gt;
&lt;td&gt;Perl, PCRE (C, PHP, R…), Java: one line break (carriage return + line feed pair, and all the characters matched by \v)&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;td&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;

</description>
      <category>regex</category>
    </item>
    <item>
      <title>Linux SSH Session Is Slow</title>
      <dc:creator>Shreyansh Panchal</dc:creator>
      <pubDate>Wed, 13 May 2020 05:31:48 +0000</pubDate>
      <link>https://dev.to/izshreyansh/linux-ssh-session-is-slow-2fj5</link>
      <guid>https://dev.to/izshreyansh/linux-ssh-session-is-slow-2fj5</guid>
      <description>&lt;p&gt;This post is for you if you've run into the problem where your ssh session is painfully slow despite the fact that there free resources available on your machine.&lt;/p&gt;

&lt;p&gt;First thing you want to check is latency to your server from your development machine. You can do that by ping or trace route. If you find that Latency is in-fact your issue. We can slightly improve by disabling Reverse DNS Lookup by server. Here's a &lt;a href="https://unix.stackexchange.com/a/56947"&gt;full argument&lt;/a&gt; in favor of disabling reverse dns lookup.&lt;/p&gt;

&lt;p&gt;How to do it?&lt;br&gt;
You should head over to &lt;code&gt;sshd_config&lt;/code&gt; file. &lt;br&gt;
Add this key to your file &lt;code&gt;UseDNS no&lt;/code&gt;.&lt;/p&gt;

&lt;p&gt;You might have to disconnect from your ssh &amp;amp; reconnect again in-order to see the changes.&lt;/p&gt;

&lt;p&gt;I hope it helps :)&lt;/p&gt;

</description>
      <category>linux</category>
      <category>ssh</category>
      <category>sshd</category>
    </item>
  </channel>
</rss>
