<?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: Noor E Jannat Nafia</title>
    <description>The latest articles on Forem by Noor E Jannat Nafia (@noorejannatnafia).</description>
    <link>https://forem.com/noorejannatnafia</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%2F925648%2Ff2bae936-6568-443e-bfd5-633c344be907.jpg</url>
      <title>Forem: Noor E Jannat Nafia</title>
      <link>https://forem.com/noorejannatnafia</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/noorejannatnafia"/>
    <language>en</language>
    <item>
      <title>Access Wi-Fi password from a PC</title>
      <dc:creator>Noor E Jannat Nafia</dc:creator>
      <pubDate>Tue, 23 Sep 2025 14:59:10 +0000</pubDate>
      <link>https://forem.com/noorejannatnafia/access-wi-fi-password-from-a-pc-k1e</link>
      <guid>https://forem.com/noorejannatnafia/access-wi-fi-password-from-a-pc-k1e</guid>
      <description>&lt;p&gt;Only 2 commands are needed to access the Wi-Fi password from a PC connected to the Wi-Fi already. (actually 1)&lt;br&gt;
Change the color of the fonts with: &lt;code&gt;color 0a&lt;/code&gt;&lt;br&gt;
The ultimate command: netsh wlan show profiles "Wi-Fi name" key=clear&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%2Fvoe9jz1j6vamcfgsyqzp.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%2Fvoe9jz1j6vamcfgsyqzp.png" alt=" " width="727" height="986"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>IaaS, SaaS or PaaS?</title>
      <dc:creator>Noor E Jannat Nafia</dc:creator>
      <pubDate>Sun, 30 Jul 2023 21:06:19 +0000</pubDate>
      <link>https://forem.com/noorejannatnafia/iaas-saas-or-paas-4a71</link>
      <guid>https://forem.com/noorejannatnafia/iaas-saas-or-paas-4a71</guid>
      <description>&lt;p&gt;The basic key points of the 3 Cloud Computing services include:&lt;/p&gt;

&lt;p&gt;IaaS(Infrastructure as a service): The cloud provider is responsible for maintaining the &lt;strong&gt;infrastructure&lt;/strong&gt; (hardware, network connectivity (to the internet), and physical security). You’re responsible for maintaining the &lt;strong&gt;platform&lt;/strong&gt; (operating systems, middleware, development tools) and &lt;strong&gt;software&lt;/strong&gt; (data and apps).&lt;/p&gt;

&lt;p&gt;PaaS(Platform as a service): The cloud provider is responsible for maintaining the &lt;strong&gt;infrastructure&lt;/strong&gt; (hardware, network connectivity (to the internet), and physical security) and &lt;strong&gt;platform&lt;/strong&gt; (operating systems, middleware, development tools). You’re responsible for maintaining the &lt;strong&gt;software&lt;/strong&gt; (data and apps).&lt;/p&gt;

&lt;p&gt;SaaS(Software as a service): The cloud provider is responsible for maintaining the &lt;strong&gt;infrastructure&lt;/strong&gt; (hardware, network connectivity (to the internet), and physical security), &lt;strong&gt;platform&lt;/strong&gt; (operating systems, middleware, development tools) and &lt;strong&gt;software&lt;/strong&gt; (data and apps). You’re responsible for maintaining nothing.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Iteration or Recursion?</title>
      <dc:creator>Noor E Jannat Nafia</dc:creator>
      <pubDate>Sun, 16 Apr 2023 09:57:10 +0000</pubDate>
      <link>https://forem.com/noorejannatnafia/iteration-or-recursion-13mk</link>
      <guid>https://forem.com/noorejannatnafia/iteration-or-recursion-13mk</guid>
      <description>&lt;p&gt;One of the most common misconception or jeopardy arises when encountering Data Structure &amp;amp; Algorithms.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Iteration:&lt;/strong&gt;&lt;br&gt;
Iteration is the repetition of a process.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Recursion:&lt;/strong&gt;&lt;br&gt;
Recursion is the process of calling a certain function by itself.&lt;/p&gt;

&lt;p&gt;The definitions might make them appear similar. However, there are several differences among them to differentiate them properly.&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Iteration&lt;/th&gt;
&lt;th&gt;Recursion&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Set of instructions is repeated.&lt;/td&gt;
&lt;td&gt;The function calls itself.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Iteration consists of initialization and conditions.&lt;/td&gt;
&lt;td&gt;Recursion consists of base case (termination condition) only.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Infinite iteration can occur when the condition never becomes false.&lt;/td&gt;
&lt;td&gt;Infinite recursion can occur when the base case(s) can never be reached.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Iteration uses a data structure called stack.&lt;/td&gt;
&lt;td&gt;Recursion does use stack.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Fast in execution.&lt;/td&gt;
&lt;td&gt;Slow in execution.&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;The codes of iteration are usually longer.&lt;/td&gt;
&lt;td&gt;The codes of recursion are usually shorter.&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

</description>
    </item>
    <item>
      <title>Using Current Date &amp; Time in Python</title>
      <dc:creator>Noor E Jannat Nafia</dc:creator>
      <pubDate>Thu, 16 Feb 2023 16:45:06 +0000</pubDate>
      <link>https://forem.com/noorejannatnafia/using-current-date-time-20pm</link>
      <guid>https://forem.com/noorejannatnafia/using-current-date-time-20pm</guid>
      <description>&lt;p&gt;If we want to use present date, we need to use python library.&lt;/p&gt;

&lt;p&gt;At first, we need to need to import the required library.&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%2Fiaa11didq7flps51grli.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%2Fiaa11didq7flps51grli.png" alt="Image description" width="397" height="63"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Then, save the date in a variable and print it, or use it as per need.&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%2F6ogzegu66py49t3wmdi4.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%2F6ogzegu66py49t3wmdi4.png" alt="Image description" width="577" height="164"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>welcome</category>
    </item>
    <item>
      <title>Arithmetic Operations - Python - Part 1</title>
      <dc:creator>Noor E Jannat Nafia</dc:creator>
      <pubDate>Tue, 10 Jan 2023 06:17:54 +0000</pubDate>
      <link>https://forem.com/noorejannatnafia/python-basics-quick-review-16ej</link>
      <guid>https://forem.com/noorejannatnafia/python-basics-quick-review-16ej</guid>
      <description>&lt;p&gt;Several data types:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;number: integer, float, complex&lt;/li&gt;
&lt;li&gt;string&lt;/li&gt;
&lt;li&gt;print statement&lt;/li&gt;
&lt;li&gt;list&lt;/li&gt;
&lt;li&gt;dictionary&lt;/li&gt;
&lt;li&gt;boolean&lt;/li&gt;
&lt;li&gt;tuple&lt;/li&gt;
&lt;li&gt;set&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;NUMBER:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A number can be either an integer or a float.&lt;br&gt;
An integer is a whole number.&lt;br&gt;
Integer - 3, 6, 8, 445, 34567, 65434&lt;br&gt;
A float is a decimal number.&lt;br&gt;
Float - 1.0, 0.5, 2.33, 765.67, 1.33&lt;/p&gt;

&lt;p&gt;Arithmetic operations can be executed on numbers, such as:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Addition:
Sum of 2 numbers
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--GtfFkNtP--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2wat01ff102r068m2rsj.png" alt="Image description" width="232" height="87"&gt;
&lt;/li&gt;
&lt;li&gt;Subtraction:
Difference between 2 numbers
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--0vAIF6c4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fitt7m4urw7bnmtkk3bb.png" alt="Image description" width="288" height="87"&gt;
&lt;/li&gt;
&lt;li&gt;Multiplication:
Product of 2 numbers
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--ZPTzl6XJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/bqcnipyaco4goy4l4iyf.png" alt="Image description" width="214" height="90"&gt;
&lt;/li&gt;
&lt;li&gt;Division:
Quotient of 2 numbers
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--3ojmhMN9--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/grddw7g440mxaddh67z1.png" alt="Image description" width="219" height="79"&gt;
&lt;/li&gt;
&lt;li&gt;Floor Division:
Quotient of 2 numbers, except the fractional part
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--YRADFEcq--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/xubv7cxbm8klcc9wlveh.png" alt="Image description" width="216" height="88"&gt;
&lt;/li&gt;
&lt;li&gt;Exponentiation:
A number raised to the power of another number
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--o7gDOBn8--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/iigku76sq1ozhykmxr3g.png" alt="Image description" width="231" height="81"&gt;
Which is the same as:
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--c8iRy-VN--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/v3su2c0ibz5zo6zas6n3.png" alt="Image description" width="212" height="86"&gt;
&lt;/li&gt;
&lt;li&gt;Modulus:
Reminder after division division of 2 numbers
&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--bVozUtnM--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/kef7za3ji1exdajiiwlk.png" alt="Image description" width="237" height="77"&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Python follows BODMAS rule.&lt;br&gt;
B-Bracket&lt;br&gt;
O-Of&lt;br&gt;
D-Division&lt;br&gt;
M-Multiplication&lt;br&gt;
A-Addition&lt;br&gt;
S-Subtraction&lt;/p&gt;

&lt;p&gt;Example:&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--h0tqffOE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/3jh7xs7fr4djgwbg4gy0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--h0tqffOE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/3jh7xs7fr4djgwbg4gy0.png" alt="Image description" width="352" height="167"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
