<?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: Tanatip Siriprathum</title>
    <description>The latest articles on DEV Community by Tanatip Siriprathum (@tanatip).</description>
    <link>https://dev.to/tanatip</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%2F263419%2F37933baa-aded-43fb-9fdd-c5629e77b745.jpg</url>
      <title>DEV Community: Tanatip Siriprathum</title>
      <link>https://dev.to/tanatip</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/tanatip"/>
    <language>en</language>
    <item>
      <title>How to stop Angular ng serve on Mac/Linux</title>
      <dc:creator>Tanatip Siriprathum</dc:creator>
      <pubDate>Sat, 19 Jun 2021 10:18:32 +0000</pubDate>
      <link>https://dev.to/tanatip/how-to-stop-angular-ng-serve-on-mac-linux-347b</link>
      <guid>https://dev.to/tanatip/how-to-stop-angular-ng-serve-on-mac-linux-347b</guid>
      <description>&lt;p&gt;There're two ways to do this: &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;First&lt;/strong&gt;&lt;br&gt;
Use the following command to end the running process.&lt;/p&gt;

&lt;p&gt;&lt;code&gt;ctrl&lt;/code&gt; + &lt;code&gt;c&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Second&lt;/strong&gt;&lt;br&gt;
When the process is running as background process, use the &lt;code&gt;ps&lt;/code&gt; command to find the process ID then use the PID to kill the process.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;ps -ef | grep "ng serve"
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The output will look like this:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; 501 25782 23667   0  5:04PM ttys000    0:22.54 ng serve  
 501 25790 23408   0  5:05PM ttys001    0:00.01 grep ng serve
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Then use this command to stop ng serve.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;kill 25782
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>angular</category>
    </item>
    <item>
      <title>Postman error: unable to verify the first certificate</title>
      <dc:creator>Tanatip Siriprathum</dc:creator>
      <pubDate>Tue, 11 May 2021 08:17:05 +0000</pubDate>
      <link>https://dev.to/tanatip/postman-error-unable-to-verify-the-first-certificate-ll4</link>
      <guid>https://dev.to/tanatip/postman-error-unable-to-verify-the-first-certificate-ll4</guid>
      <description>&lt;p&gt;When requesting the new token for OAuth2 in postman there's an error showing in the console log as below&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight console"&gt;&lt;code&gt;&lt;span class="go"&gt;Error: unable to verify the first certificate
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;To fix the error, just turn off the highlight option &lt;br&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%2F63hnp24qt3c5ep6durip.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%2F63hnp24qt3c5ep6durip.PNG" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Can't start rails server</title>
      <dc:creator>Tanatip Siriprathum</dc:creator>
      <pubDate>Fri, 07 May 2021 16:56:26 +0000</pubDate>
      <link>https://dev.to/tanatip/can-t-start-rails-server-h1</link>
      <guid>https://dev.to/tanatip/can-t-start-rails-server-h1</guid>
      <description>&lt;p&gt;Getting the error 'Webpacker configuration file not found' while starting the rails server. The cause is that not having yarn and webpacker installed. So try running the following command:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight console"&gt;&lt;code&gt;&lt;span class="go"&gt;brew install yarn
rails webpacker:install
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>rails</category>
    </item>
  </channel>
</rss>
