<?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>Forem: Ashok Mohanakumar</title>
    <description>The latest articles on Forem by Ashok Mohanakumar (@ashokcodes).</description>
    <link>https://forem.com/ashokcodes</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%2F87072%2Fa2e770a6-91da-491f-92c6-0b8a15943a34.jpg</url>
      <title>Forem: Ashok Mohanakumar</title>
      <link>https://forem.com/ashokcodes</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/ashokcodes"/>
    <language>en</language>
    <item>
      <title>Stopping .htaccess from handling API route</title>
      <dc:creator>Ashok Mohanakumar</dc:creator>
      <pubDate>Fri, 21 Sep 2018 11:37:39 +0000</pubDate>
      <link>https://forem.com/ashokcodes/stopping-htaccess-from-handling-api-route--i7j</link>
      <guid>https://forem.com/ashokcodes/stopping-htaccess-from-handling-api-route--i7j</guid>
      <description>&lt;p&gt;I am routing all the http requests to a website to the index.php file and then handling it from there in MVC fashion. But, if the request is made &lt;code&gt;/api&lt;/code&gt;route, then another file Api.php should handle it. How do I make that happen?&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.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%2Fes3vzq69ov1za5f12y4x.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.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%2Fes3vzq69ov1za5f12y4x.png" alt="Image" width="800" height="261"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;^ this is what I tried, but it just gave me a 500 error&lt;/p&gt;

&lt;p&gt;Also, any insight into best practice concerning this is appreciated. I'm trying to write a PHP MVC framework, so I'd also like to know if this is the right way to go about with routing&lt;/p&gt;

</description>
      <category>help</category>
      <category>php</category>
    </item>
    <item>
      <title>WHAT'S YANG AND NETCONF</title>
      <dc:creator>Ashok Mohanakumar</dc:creator>
      <pubDate>Wed, 12 Sep 2018 09:35:25 +0000</pubDate>
      <link>https://forem.com/ashokcodes/whats-yang-and-netconf--2api</link>
      <guid>https://forem.com/ashokcodes/whats-yang-and-netconf--2api</guid>
      <description>&lt;p&gt;What is NETCONF and what is YANG and what are they used for. I can't quite workout anything from the docs I tried reading.&lt;/p&gt;

</description>
      <category>explainlikeimfive</category>
      <category>netconf</category>
      <category>yang</category>
      <category>networking</category>
    </item>
    <item>
      <title>Need Data to write parser</title>
      <dc:creator>Ashok Mohanakumar</dc:creator>
      <pubDate>Fri, 07 Sep 2018 14:26:17 +0000</pubDate>
      <link>https://forem.com/ashokcodes/need-data-to-write-parser-4a6l</link>
      <guid>https://forem.com/ashokcodes/need-data-to-write-parser-4a6l</guid>
      <description>&lt;p&gt;I want to learn writing simple parsers, it would be fun if I can do it as simple challenges or problems that need solutions. Like some chunk of raw data to take information out of. Is there a place that you guys know of or I can look for such data ? &lt;/p&gt;

</description>
      <category>python</category>
      <category>help</category>
    </item>
    <item>
      <title>Make get request and parse JSON in C?</title>
      <dc:creator>Ashok Mohanakumar</dc:creator>
      <pubDate>Thu, 02 Aug 2018 14:48:44 +0000</pubDate>
      <link>https://forem.com/ashokcodes/make-get-request-and-parse-json-in-c-2cbc</link>
      <guid>https://forem.com/ashokcodes/make-get-request-and-parse-json-in-c-2cbc</guid>
      <description>&lt;p&gt;I'm trying to learn C and get comfortable with it. How do I make HTTP requests?&lt;br&gt;
What do I do to handle JSON?&lt;/p&gt;

</description>
      <category>question</category>
      <category>help</category>
      <category>c</category>
      <category>json</category>
    </item>
    <item>
      <title>Backticks in browser scripts</title>
      <dc:creator>Ashok Mohanakumar</dc:creator>
      <pubDate>Mon, 30 Jul 2018 10:15:45 +0000</pubDate>
      <link>https://forem.com/ashokcodes/backticks-in-browser-scripts-55dn</link>
      <guid>https://forem.com/ashokcodes/backticks-in-browser-scripts-55dn</guid>
      <description>&lt;p&gt;Do all browsers (IE doesn't matter) support use of backticks in javascript&lt;/p&gt;

&lt;p&gt;Eg; can I use&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;console.log(`Prics is Rs. ${price}`);

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Instead of&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;console.log('Prics is Rs.'+ price);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>question</category>
      <category>javascript</category>
      <category>help</category>
    </item>
    <item>
      <title>Is there a dev.to dark mode?</title>
      <dc:creator>Ashok Mohanakumar</dc:creator>
      <pubDate>Fri, 27 Jul 2018 11:05:28 +0000</pubDate>
      <link>https://forem.com/ashokcodes/is-there-a-devto-dark-mode-5498</link>
      <guid>https://forem.com/ashokcodes/is-there-a-devto-dark-mode-5498</guid>
      <description>

&lt;p&gt;dev.to is cool! but very white. Is there/ will there be a dark mode or night mode of any sorts? &lt;/p&gt;


</description>
      <category>question</category>
      <category>devto</category>
    </item>
    <item>
      <title>How to read dot files with PHP?</title>
      <dc:creator>Ashok Mohanakumar</dc:creator>
      <pubDate>Thu, 26 Jul 2018 11:31:54 +0000</pubDate>
      <link>https://forem.com/ashokcodes/how-to-read-dot-files-with-php-4bah</link>
      <guid>https://forem.com/ashokcodes/how-to-read-dot-files-with-php-4bah</guid>
      <description>&lt;p&gt;Is there a practice of using dot files to store config info and constants in php? If so, how do I parse them? If not, then what would be a good way to isolate and store sensitive info like db passwords, or other config info?&lt;/p&gt;

</description>
      <category>help</category>
      <category>php</category>
      <category>question</category>
    </item>
  </channel>
</rss>
