<?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: Mayank singh verma</title>
    <description>The latest articles on DEV Community by Mayank singh verma (@futuristicboy).</description>
    <link>https://dev.to/futuristicboy</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%2F426344%2F37330efc-0ab9-450c-85ab-0a9bfc25e7f1.jpg</url>
      <title>DEV Community: Mayank singh verma</title>
      <link>https://dev.to/futuristicboy</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/futuristicboy"/>
    <language>en</language>
    <item>
      <title>IDE vs TEXT EDITOR</title>
      <dc:creator>Mayank singh verma</dc:creator>
      <pubDate>Fri, 10 Jul 2020 05:31:46 +0000</pubDate>
      <link>https://dev.to/futuristicboy/ide-vs-text-editor-28aa</link>
      <guid>https://dev.to/futuristicboy/ide-vs-text-editor-28aa</guid>
      <description>&lt;p&gt;An IDE, or Integrated Development Environment, is a programming tool that integrates several specialized tools into a cohesive environment. These specialized tools may include:&lt;/p&gt;

&lt;p&gt;1.a text editor&lt;br&gt;
2.a code autocomplete function&lt;br&gt;
3.a build procedure that includes compiler, linker, and whatnot&lt;br&gt;
4.a debugger&lt;br&gt;
5.a file or project manager&lt;br&gt;
6.a performance profiler&lt;br&gt;
7.a deployment tool&lt;br&gt;
and so on.&lt;/p&gt;

&lt;p&gt;IDEs can be used as text editors, and text editors can be used as IDEs.&lt;/p&gt;

&lt;p&gt;A text editor is just for writing/modifying text/code.&lt;/p&gt;

&lt;p&gt;With an IDE, you should do a lot more within that single program; running, debugging, version control, etc.&lt;/p&gt;

&lt;p&gt;Below are some integrated features available in IDE which is not available in simple editor.&lt;/p&gt;

&lt;p&gt;1.For Deployment and version controlling you can find SVN and CVS support in IDE,&lt;br&gt;
2.FTP and SFTP support,&lt;br&gt;
3.Project import wizard from local or FTP,&lt;br&gt;
4.code folding,&lt;br&gt;
5.Support for freamwork like Symphony or Zend,&lt;br&gt;
6.Templeting support like smarty,&lt;br&gt;
7.Support for Webservice library lie AMAZON, Facebook [but only &lt;br&gt;
 available in Netbeans, i didn't check in Eclipse or Zend ]&lt;br&gt;
8.PHP Debugger like Xdebug,Zend Debugger support and many more...&lt;/p&gt;

</description>
      <category>ide</category>
      <category>texteditor</category>
      <category>idevstexteditor</category>
    </item>
    <item>
      <title>Program of fibonacci numbers (method 1)</title>
      <dc:creator>Mayank singh verma</dc:creator>
      <pubDate>Thu, 09 Jul 2020 04:22:40 +0000</pubDate>
      <link>https://dev.to/futuristicboy/program-of-fibonacci-numbers-method-1-5eka</link>
      <guid>https://dev.to/futuristicboy/program-of-fibonacci-numbers-method-1-5eka</guid>
      <description>&lt;p&gt;Hello guys,&lt;br&gt;
I know most of you heard of the famous Fibonacci numbers. Here we will implement it with Python.&lt;br&gt;
Fibonacci numbers are the sequence of integers(0,1,1,2,3,5,8,13,21,....).&lt;br&gt;
Sequence of integers is defined by the following recurrence relation.    F(n)=F(n-1)+F(n-2) &lt;br&gt;
with the values F(0)=0 and F(1)=1&lt;/p&gt;

&lt;p&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%2Fi%2Fnadbazdyk48k86ni3ev3.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%2Fi%2Fnadbazdyk48k86ni3ev3.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Recursion is a way of programming or coding a problem, in which a function calls itself one or more times in its body. Usually, it is returning the return value of this function call. If a function definition fulfils the condition of recursion, we call this function a recursive function.&lt;/p&gt;

&lt;p&gt;Disadvantages of Python Recursion&lt;br&gt;
1.Slow.&lt;br&gt;
2.Logical but difficult to trace and debug.&lt;br&gt;
3.Requires extra storage space. For every recursive calls separate memory is allocated for the variables.&lt;br&gt;
4.Recursive functions often throw a Stack Overflow Exception when processing or operations are too large.&lt;/p&gt;

&lt;p&gt;Hope you are finding it interesting as well.&lt;br&gt;
Keep Coding: Let me know your thoughts.&lt;br&gt;
Have a great one!&lt;/p&gt;

</description>
      <category>python</category>
      <category>fibonacci</category>
      <category>recursion</category>
    </item>
  </channel>
</rss>
