<?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: abhishek</title>
    <description>The latest articles on Forem by abhishek (@johndoesup).</description>
    <link>https://forem.com/johndoesup</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%2F26051%2F2277ccc1-1b23-4bb1-9555-1c5d378c6d30.png</url>
      <title>Forem: abhishek</title>
      <link>https://forem.com/johndoesup</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/johndoesup"/>
    <language>en</language>
    <item>
      <title>why jamstack, explain like I am 5?</title>
      <dc:creator>abhishek</dc:creator>
      <pubDate>Mon, 31 May 2021 11:39:03 +0000</pubDate>
      <link>https://forem.com/johndoesup/why-jamstack-explain-like-i-am-5-m4d</link>
      <guid>https://forem.com/johndoesup/why-jamstack-explain-like-i-am-5-m4d</guid>
      <description>&lt;p&gt;Why choose jamstack if I am thinking of developing a website (webapp) for my e-commerce website for selling clothes. &lt;/p&gt;

&lt;p&gt;Limitation: I am learning front-end. previously UI/UX designer trainee.&lt;/p&gt;

</description>
      <category>explainlikeimfive</category>
    </item>
    <item>
      <title>javascript return?</title>
      <dc:creator>abhishek</dc:creator>
      <pubDate>Tue, 26 Jan 2021 15:23:50 +0000</pubDate>
      <link>https://forem.com/johndoesup/javascript-return-4p00</link>
      <guid>https://forem.com/johndoesup/javascript-return-4p00</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nx"&gt;e&lt;/span&gt;&lt;span class="p"&gt;(){&lt;/span&gt;
  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="mi"&gt;4&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="kc"&gt;false&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="nx"&gt;e&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; 
&lt;span class="c1"&gt;// e () -&amp;gt; false&lt;/span&gt;
&lt;span class="kd"&gt;function&lt;/span&gt; &lt;span class="nx"&gt;f&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
  &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="mi"&gt;4&lt;/span&gt; &lt;span class="o"&gt;+&lt;/span&gt; &lt;span class="mi"&gt;4&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="kc"&gt;true&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="nx"&gt;f&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;span class="c1"&gt;// f() -&amp;gt; true&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Shouldn't I expect it to return 4 or sum of 4 + 4. Why every time my function &lt;code&gt;e()&lt;/code&gt; and function &lt;code&gt;f()&lt;/code&gt; return 2nd value?&lt;/p&gt;

</description>
      <category>help</category>
    </item>
    <item>
      <title>RAM model, Big O what's that?</title>
      <dc:creator>abhishek</dc:creator>
      <pubDate>Wed, 03 Jan 2018 13:18:32 +0000</pubDate>
      <link>https://forem.com/johndoesup/ram-model-big-o-whats-that-3kb7</link>
      <guid>https://forem.com/johndoesup/ram-model-big-o-whats-that-3kb7</guid>
      <description>&lt;p&gt;Here a question I don't understand. Can anybody help with that?&lt;/p&gt;

&lt;h2&gt;
  
  
  Use RAM model to estimate the big-oh of the running time for the following code segment.
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
for(i = 1; i &amp;lt; n; i++){
   small_pos = i;
   smallest = Array[samll_pos];
   for(j = i + 1; J &amp;lt;= n; j++){
     if(Array[j] &amp;lt; smallest){
       small_pos = j;
       smallest = Array[small_pos]
     }
   }
}
Array[small_pos] = Array[i];
Array[i] = smallest;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>beginners</category>
      <category>computerscience</category>
      <category>help</category>
    </item>
  </channel>
</rss>
