<?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: Sok HS</title>
    <description>The latest articles on DEV Community by Sok HS (@sokhs).</description>
    <link>https://dev.to/sokhs</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F630761%2F5083763c-b804-4e11-a55b-0e71ee3c0290.jpg</url>
      <title>DEV Community: Sok HS</title>
      <link>https://dev.to/sokhs</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sokhs"/>
    <language>en</language>
    <item>
      <title>API - What is it ? P-2</title>
      <dc:creator>Sok HS</dc:creator>
      <pubDate>Fri, 22 Oct 2021 15:11:19 +0000</pubDate>
      <link>https://dev.to/sokhs/api-what-is-it-p-2-2lpf</link>
      <guid>https://dev.to/sokhs/api-what-is-it-p-2-2lpf</guid>
      <description>&lt;ul&gt;
&lt;li&gt;Types of &lt;strong&gt;API&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;Public&lt;/li&gt;
&lt;li&gt;Partner&lt;/li&gt;
&lt;li&gt;Private or Internal&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;Public &lt;strong&gt;API&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;Available to any third party developers.&lt;/p&gt;

&lt;p&gt;API's are publicly available to developers and other users with minimal restriction. They may require registration, use of an &lt;strong&gt;API&lt;/strong&gt; Key or OAuth, or maybe completely open.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;ul&gt;
&lt;li&gt;Partner &lt;strong&gt;API&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;Partner APIs are APIs exposed by/to the strategic business partners.&lt;/p&gt;

&lt;p&gt;They are not available publicly and need specific entitlement to access them.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;ul&gt;
&lt;li&gt;Private &lt;strong&gt;API&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;blockquote&gt;
&lt;p&gt;Private APIs, are hidden from external users and only exposed by internal systems.&lt;/p&gt;

&lt;p&gt;Internal APIs are not meant for consumption outside of the company but rather for use across different internal development teams for better productivity and reuse of services.&lt;/p&gt;
&lt;/blockquote&gt;

</description>
      <category>programming</category>
      <category>webdev</category>
      <category>tutorial</category>
      <category>beginners</category>
    </item>
    <item>
      <title>API - What is it ? P-1</title>
      <dc:creator>Sok HS</dc:creator>
      <pubDate>Fri, 22 Oct 2021 08:33:14 +0000</pubDate>
      <link>https://dev.to/sokhs/api-what-is-it-p-1-3am7</link>
      <guid>https://dev.to/sokhs/api-what-is-it-p-1-3am7</guid>
      <description>&lt;ul&gt;
&lt;li&gt;What is &lt;strong&gt;API&lt;/strong&gt; ?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;API&lt;/strong&gt; stands of &lt;em&gt;Application Programming Interface&lt;/em&gt;.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;An &lt;strong&gt;API&lt;/strong&gt; is a set of programming code that enables data transmission between one software product and another.&lt;/p&gt;

&lt;p&gt;It also contains the terms of this data exchange.&lt;/p&gt;
&lt;/blockquote&gt;

&lt;ul&gt;
&lt;li&gt;How &lt;strong&gt;API&lt;/strong&gt; works ?&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Browser -&amp;gt; &lt;strong&gt;API&lt;/strong&gt; -&amp;gt; Server (Request)&lt;br&gt;
Server  -&amp;gt; &lt;strong&gt;API&lt;/strong&gt; -&amp;gt; Browser (Response)&lt;/p&gt;

</description>
    </item>
    <item>
      <title>PascalCase</title>
      <dc:creator>Sok HS</dc:creator>
      <pubDate>Sat, 25 Sep 2021 07:12:02 +0000</pubDate>
      <link>https://dev.to/sokhs/pascalcase-33a3</link>
      <guid>https://dev.to/sokhs/pascalcase-33a3</guid>
      <description>&lt;h3&gt;
  
  
  PascalCase
&lt;/h3&gt;

&lt;p&gt;&lt;strong&gt;PascalCase&lt;/strong&gt; is a &lt;em&gt;naming convention&lt;/em&gt; in which the first letter of each word in a compound word is &lt;em&gt;capitalized&lt;/em&gt;. Software Developer often use PascalCase when writing source code to name functions, classes, etc...&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;PascalCase&lt;/strong&gt; is similar to &lt;strong&gt;camelCase&lt;/strong&gt;, except the first letter in PascalCase is always capitalized. Below are some examples.&lt;/p&gt;

&lt;p&gt;PascalCase:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;NewObject;
NewFunction();
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;CamelCase:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;newObject;
newFunction();
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>programming</category>
    </item>
    <item>
      <title>Most Popular Web Dev Stacks</title>
      <dc:creator>Sok HS</dc:creator>
      <pubDate>Sat, 14 Aug 2021 17:32:59 +0000</pubDate>
      <link>https://dev.to/sokhs/most-popular-web-dev-stacks-574l</link>
      <guid>https://dev.to/sokhs/most-popular-web-dev-stacks-574l</guid>
      <description>&lt;p&gt;A &lt;strong&gt;Web stack&lt;/strong&gt; is the collection of software required for Web development.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;code&gt;LAMP&lt;/code&gt;
&lt;/h2&gt;

&lt;p&gt;LINUX&lt;br&gt;
APACHE&lt;br&gt;
MYSQL&lt;br&gt;
PHP&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;code&gt;LEMP&lt;/code&gt;
&lt;/h2&gt;

&lt;p&gt;LINUX&lt;br&gt;
NGINX&lt;br&gt;
MYSQL&lt;br&gt;
PHP&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;code&gt;MERN&lt;/code&gt;
&lt;/h2&gt;

&lt;p&gt;MONGODB&lt;br&gt;
EXPRESS&lt;br&gt;
REACT&lt;br&gt;
NODEJS&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;code&gt;MEVN&lt;/code&gt;
&lt;/h2&gt;

&lt;p&gt;MONGODB&lt;br&gt;
EXPRESS&lt;br&gt;
VUE&lt;br&gt;
NODEJS&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;code&gt;MEAN&lt;/code&gt;
&lt;/h2&gt;

&lt;p&gt;MONGODB&lt;br&gt;
EXPRESS&lt;br&gt;
ANGULAR&lt;br&gt;
NODEJS&lt;/p&gt;

&lt;p&gt;&lt;em&gt;&lt;code&gt;What stack do you Use?&lt;/code&gt;&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;+++++ Link +++++&lt;br&gt;
Facebook: &lt;a href="https://web.facebook.com/UnTalkCoding"&gt;https://web.facebook.com/UnTalkCoding&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>HTML Content to Learning - Beginning</title>
      <dc:creator>Sok HS</dc:creator>
      <pubDate>Sat, 31 Jul 2021 21:57:05 +0000</pubDate>
      <link>https://dev.to/sokhs/html-content-to-learning-beginning-3cd8</link>
      <guid>https://dev.to/sokhs/html-content-to-learning-beginning-3cd8</guid>
      <description>&lt;p&gt;Welcome.....&lt;br&gt;
HTML is the Standard Markup Language for Web pages.&lt;br&gt;
HTML is easy to Learn.&lt;br&gt;
Please Pay Attention !!!&lt;/p&gt;

&lt;p&gt;+++++ Content +++++&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Introduction&lt;/li&gt;
&lt;li&gt;Basic&lt;/li&gt;
&lt;li&gt;Elements&lt;/li&gt;
&lt;li&gt;Attribute&lt;/li&gt;
&lt;li&gt;Heading&lt;/li&gt;
&lt;li&gt;Paragraph&lt;/li&gt;
&lt;li&gt;Style&lt;/li&gt;
&lt;li&gt;Formatting&lt;/li&gt;
&lt;li&gt;Quotation&lt;/li&gt;
&lt;li&gt;Comment&lt;/li&gt;
&lt;li&gt;Color&lt;/li&gt;
&lt;li&gt;CSS&lt;/li&gt;
&lt;li&gt;Link&lt;/li&gt;
&lt;li&gt;Images&lt;/li&gt;
&lt;li&gt;Table&lt;/li&gt;
&lt;li&gt;list&lt;/li&gt;
&lt;li&gt;Block &amp;amp; Inline&lt;/li&gt;
&lt;li&gt;Class&lt;/li&gt;
&lt;li&gt;ID&lt;/li&gt;
&lt;li&gt;IFrame&lt;/li&gt;
&lt;li&gt;JavaScript&lt;/li&gt;
&lt;li&gt;File Paths&lt;/li&gt;
&lt;li&gt;Forms &lt;/li&gt;
&lt;li&gt;Forms Attributes&lt;/li&gt;
&lt;li&gt;Form Elements&lt;/li&gt;
&lt;li&gt;Input Types&lt;/li&gt;
&lt;li&gt;Input Attribute&lt;/li&gt;
&lt;li&gt;Input Form Attribute&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;+++++ Website Tutorial +++++&lt;br&gt;
W3School: &lt;a href="https://www.w3schools.com/html/default.asp"&gt;https://www.w3schools.com/html/default.asp&lt;/a&gt;&lt;br&gt;
MDN Web Docs: &lt;a href="https://developer.mozilla.org/en-US/docs/Web/HTML"&gt;https://developer.mozilla.org/en-US/docs/Web/HTML&lt;/a&gt;&lt;br&gt;
Study To Night: &lt;a href="https://www.studytonight.com/code/html-course/"&gt;https://www.studytonight.com/code/html-course/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;+++++ Link +++++&lt;br&gt;
Facebook: &lt;a href="https://web.facebook.com/UnTalkCoding"&gt;https://web.facebook.com/UnTalkCoding&lt;/a&gt;&lt;/p&gt;

</description>
      <category>html</category>
      <category>roadmap</category>
      <category>coding</category>
      <category>untalkcoding</category>
    </item>
  </channel>
</rss>
