<?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: Sushant Gupta</title>
    <description>The latest articles on DEV Community by Sushant Gupta (@er_sushant).</description>
    <link>https://dev.to/er_sushant</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%2F382478%2F6d475657-edc8-479a-b466-fc823c1a1bcb.jpeg</url>
      <title>DEV Community: Sushant Gupta</title>
      <link>https://dev.to/er_sushant</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/er_sushant"/>
    <language>en</language>
    <item>
      <title>Getting Started With GDB!</title>
      <dc:creator>Sushant Gupta</dc:creator>
      <pubDate>Mon, 08 Jun 2020 05:59:39 +0000</pubDate>
      <link>https://dev.to/er_sushant/getting-started-with-gdb-5905</link>
      <guid>https://dev.to/er_sushant/getting-started-with-gdb-5905</guid>
      <description>&lt;blockquote&gt;
&lt;p&gt;This is the Part 2 of &lt;a href="https://medium.com/@er.sushant.2/what-is-debugging-how-to-do-it-162f5e31ecc1" rel="noopener noreferrer"&gt;Debugging Series&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;If you don't know what is GDB, i highly recommend to check the part 1 of this series! &lt;/p&gt;

&lt;p&gt;Nowadays, i am learning &amp;amp; practicing coding questions of Data Structures &amp;amp; Algorithms over various coding platforms such as &lt;strong&gt;CodeChef&lt;/strong&gt;, &lt;strong&gt;Hackerearth&lt;/strong&gt; etc.&lt;/p&gt;




&lt;p&gt;Most of the time when i stuck in some question or if i am not able to get the problem statement properly!&lt;br&gt;
What i usually do is firstly i give time to the problem &amp;amp; if found that i missing somewhere due to which i'm not able to solve the problem!&lt;br&gt;
In that case i refer to the problem's editorial section in which author has curated the explanation well &amp;amp; the prefix solution hint!&lt;/p&gt;



&lt;p&gt;What i faced sometimes, that after seeing the solution if i am not to able to understand the code, what that code does &amp;amp; how code is executing?&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;In this case i &lt;strong&gt;debug&lt;/strong&gt; the code, which plays a vital role!&lt;/p&gt;
&lt;/blockquote&gt;


&lt;h3&gt;
  
  
  &lt;strong&gt;So, Let's Get Started!&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;&lt;a href="https://i.giphy.com/media/l1Ku7AZCOifXfL0pq/giphy.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://i.giphy.com/media/l1Ku7AZCOifXfL0pq/giphy.gif" title="By Giphy" alt="Let's Start"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In my &lt;a href="https://medium.com/@er.sushant.2/what-is-debugging-how-to-do-it-162f5e31ecc1" rel="noopener noreferrer"&gt;first part&lt;/a&gt;, I've explained what is debugging? &amp;amp; how to install GDB debugger! Go check it out if you haven't! &lt;/p&gt;

&lt;p&gt;I follow some certain commands while debugging in almost every code!&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Let's take a simple code for finding sum of first n natural numbers!&lt;br&gt;
&lt;/p&gt;


&lt;/blockquote&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight javascript"&gt;&lt;code&gt;&lt;span class="err"&gt;#&lt;/span&gt;&lt;span class="nx"&gt;include&lt;/span&gt;&lt;span class="o"&gt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;iostream&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt;
&lt;span class="nx"&gt;using&lt;/span&gt; &lt;span class="nx"&gt;namespace&lt;/span&gt; &lt;span class="nx"&gt;std&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="nx"&gt;int&lt;/span&gt; &lt;span class="nf"&gt;main&lt;/span&gt;&lt;span class="p"&gt;(){&lt;/span&gt;
    &lt;span class="nx"&gt;int&lt;/span&gt; &lt;span class="nx"&gt;n&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nx"&gt;cin&lt;/span&gt;&lt;span class="o"&gt;&amp;gt;&amp;gt;&lt;/span&gt;&lt;span class="nx"&gt;n&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="nx"&gt;int&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="nx"&gt;sum&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="k"&gt;for&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;1&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt; &lt;span class="o"&gt;&amp;lt;=&lt;/span&gt; &lt;span class="nx"&gt;n&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt;&lt;span class="o"&gt;++&lt;/span&gt;&lt;span class="p"&gt;){&lt;/span&gt;
        &lt;span class="nx"&gt;sum&lt;/span&gt; &lt;span class="o"&gt;+=&lt;/span&gt; &lt;span class="nx"&gt;i&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
    &lt;span class="nx"&gt;cout&lt;/span&gt;&lt;span class="o"&gt;&amp;lt;&amp;lt;&lt;/span&gt;&lt;span class="nx"&gt;sum&lt;/span&gt;&lt;span class="o"&gt;&amp;lt;&amp;lt;&lt;/span&gt;&lt;span class="dl"&gt;"&lt;/span&gt;&lt;span class="se"&gt;\n&lt;/span&gt;&lt;span class="dl"&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;0&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;&lt;em&gt;GDB&lt;/em&gt; offers a big list of commands, however the following commands are the ones used most frequently:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;b main&lt;/strong&gt; - Puts the breakpoint at the beginning of the program i.e., from &lt;code&gt;main()&lt;/code&gt; , we can set breakpoint anywhere in the program!&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%2Fyun5bd71s214edk8zfic.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%2Fyun5bd71s214edk8zfic.PNG" alt="breakpoint"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;r&lt;/strong&gt; - Runs the program until a breakpoint or error&lt;br&gt;
After setting breakpoint, i usually start the program for execution by writing &lt;code&gt;r&lt;/code&gt; , it starts from the next line after the &lt;code&gt;main()&lt;/code&gt;&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%2Fzs68imidkdvwjpem2wl9.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%2Fzs68imidkdvwjpem2wl9.PNG" alt="run"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;s&lt;/strong&gt; - Runs the next line of program or if u want to go inside any function then just hit &lt;code&gt;s&lt;/code&gt; !&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;n&lt;/strong&gt; - Like &lt;code&gt;s&lt;/code&gt;, u can use this command also, but it does not step into functions!&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;I use &lt;code&gt;n&lt;/code&gt; most of the time instead of &lt;code&gt;s&lt;/code&gt; ,here i've taken n = 20&lt;/p&gt;
&lt;/blockquote&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%2Fho2857ohz0rquhxijwkf.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%2Fho2857ohz0rquhxijwkf.PNG" alt="next"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;p var&lt;/strong&gt; - Prints the current value of the variable "var", here variable are sum, so write &lt;code&gt;p sum&lt;/code&gt; to check the final &lt;code&gt;sum = 210&lt;/code&gt; !&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%2Fah9x0x477yornpwgyy12.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%2Fah9x0x477yornpwgyy12.PNG" alt="print"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;q&lt;/strong&gt; - Quits GDB, after finishing the execution, quit the GDB Debugger by hitting &lt;code&gt;y&lt;/code&gt; !&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%2Fwsim4i36oas0m109p5if.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%2Fwsim4i36oas0m109p5if.PNG" alt="quit"&gt;&lt;/a&gt;&lt;/p&gt;






&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Now, U Can Debug Any Program!
So, Lets Start Debugging Codes!
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Here, are some more commands, in case u stuck somewhere!
&lt;/h3&gt;

&lt;p&gt;&lt;em&gt;b&lt;/em&gt; - Puts a breakpoint at the current line&lt;br&gt;
&lt;em&gt;b N&lt;/em&gt; - Puts a breakpoint at line N&lt;br&gt;
&lt;em&gt;b +N&lt;/em&gt; - Puts a breakpoint N lines down from the current line&lt;br&gt;
&lt;em&gt;b fn&lt;/em&gt; - Puts a breakpoint at the beginning of function "fn"&lt;br&gt;
&lt;em&gt;d N&lt;/em&gt; - Deletes breakpoint number N&lt;br&gt;
&lt;em&gt;info break&lt;/em&gt; - list breakpoints&lt;br&gt;
&lt;em&gt;c&lt;/em&gt; - Continues running the program until the next breakpoint or error&lt;br&gt;
&lt;em&gt;f&lt;/em&gt; - Runs until the current function is finished&lt;br&gt;
&lt;em&gt;s N&lt;/em&gt; - Runs the next N lines of the program&lt;br&gt;
&lt;em&gt;u N&lt;/em&gt; - Runs until you get N lines in front of the current line&lt;br&gt;
&lt;em&gt;bt&lt;/em&gt; - Prints a stack trace&lt;br&gt;
&lt;em&gt;u&lt;/em&gt; - Goes up a level in the stack&lt;br&gt;
&lt;em&gt;d&lt;/em&gt; - Goes down a level in the stack&lt;/p&gt;




&lt;p&gt;&lt;code&gt;Thanks for giving this a read! XD&lt;/code&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;HAPPY CODING&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>tutorial</category>
      <category>codenewbie</category>
      <category>computerscience</category>
    </item>
    <item>
      <title>Customize Your Code Editor (VSCode) For Competitive Coding &amp; Development</title>
      <dc:creator>Sushant Gupta</dc:creator>
      <pubDate>Mon, 18 May 2020 09:13:27 +0000</pubDate>
      <link>https://dev.to/er_sushant/customize-your-code-editor-vscode-for-competitive-coding-development-36e</link>
      <guid>https://dev.to/er_sushant/customize-your-code-editor-vscode-for-competitive-coding-development-36e</guid>
      <description>&lt;p&gt;&lt;strong&gt;From&lt;/strong&gt; my freshman year i started coding &amp;amp; learning various tech stack to explore the fields of &lt;em&gt;Computer Science&lt;/em&gt; Technology.&lt;br&gt;
However, most of the things went well as planned to move on different technologies!&lt;br&gt;
But, whenever i shift myself for learning new &amp;amp; different tech stack, the same issue always strikes in my mind why to change myself to code on different &lt;em&gt;Code editor and IDE&lt;/em&gt; which is quite annoying for me &amp;amp; seems the same for you!&lt;/p&gt;




&lt;p&gt;So, Gradually things changed as most of you already know being a computer science student, that programming is must &amp;amp; if you do &lt;code&gt;Competitive Programming&lt;/code&gt; then its like a &lt;em&gt;cherry on cake&lt;/em&gt; to get you in good firm!&lt;br&gt;
Therefore, now a days i'm doing &lt;strong&gt;Development &amp;amp; Competitive Coding&lt;/strong&gt; in parallel, hence i don't want to shift myself for different coding editors for different purposes!&lt;/p&gt;




&lt;p&gt;Therefore, i customize my primary code editor to work for different environments &amp;amp; hence it works pretty well!&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;That Code Editor is none other than &lt;strong&gt;Visual Studio Code&lt;/strong&gt; by Microsoft!&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;It's been &lt;em&gt;18 months&lt;/em&gt; that i'm using it &amp;amp; fall in love with this amazing code editor which is maintained globally as an &lt;em&gt;open-source software&lt;/em&gt;!&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;You can download this code editor for your Operation System from &lt;a href="https://code.visualstudio.com/download"&gt;here&lt;/a&gt;&lt;/p&gt;
&lt;/blockquote&gt;

&lt;h4&gt;
  
  
  Here is some preview of mine workplace :
&lt;/h4&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;h5&gt;
  
  
  For Web Development :
&lt;/h5&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--lZ_msami--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/cozt3nr7z40v9l8qvjxo.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--lZ_msami--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/cozt3nr7z40v9l8qvjxo.PNG" alt="webdev"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;h5&gt;
  
  
  For Competitive Coding :
&lt;/h5&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--7sVrGVrz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/w60uad43cuniiu6t60zv.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--7sVrGVrz--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/w60uad43cuniiu6t60zv.PNG" alt="cp"&gt;&lt;/a&gt;&lt;/p&gt;


&lt;h4&gt;
  
  
  Do you like it?
&lt;/h4&gt;

&lt;blockquote&gt;
&lt;p&gt;You can do the same to create such environment with just few steps!&lt;/p&gt;
&lt;/blockquote&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://i.giphy.com/media/kQOxxwjjuTB7O/giphy.gif" class="article-body-image-wrapper"&gt;&lt;img src="https://i.giphy.com/media/kQOxxwjjuTB7O/giphy.gif" alt="giphy"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Here You Go :&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Download VSCode (Visual Studio Code) from above link mentioned!&lt;/li&gt;
&lt;li&gt;Open Extension Side Panel in VSCode or hit this short-cut key &lt;code&gt;ctrl+shift+x&lt;/code&gt; &lt;/li&gt;
&lt;li&gt;Install &lt;a href="https://marketplace.visualstudio.com/items?itemName=Shan.code-settings-sync"&gt;Settings Sync Extension&lt;/a&gt; :&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--pLrFxXci--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/062bky1j0i495o2hdofw.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--pLrFxXci--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/062bky1j0i495o2hdofw.PNG" width="500" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;After Installing, Reload the extension in VSCode!&lt;/li&gt;
&lt;li&gt;Hit the following keys to download my configuration :
&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight"&gt;&lt;pre class="highlight plaintext"&gt;&lt;code&gt;Shift + Alt + D
(on macOS: Shift + Option + U / Shift + Option + D)
&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;



&lt;ul&gt;
&lt;li&gt;You will see this type of interface :&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--muAaEX6U--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/yodozth6oyu3v8dqn5eh.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--muAaEX6U--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/yodozth6oyu3v8dqn5eh.PNG" width="500" height="500"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Following are the steps you need to perform to configure.

&lt;ul&gt;
&lt;li&gt;Click on &lt;code&gt;Login with GitHub&lt;/code&gt; .&lt;/li&gt;
&lt;li&gt;Login GitHub on Browser and close the browser tab once you get Success message.&lt;/li&gt;
&lt;li&gt;Copy &amp;amp; Paste My GitHub Token &amp;amp; Gist Id in the pop-up interface of Setting Sync Extension!

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;GitHub Token&lt;/strong&gt; - b881e6e5c75e5e6b407d1b796529da47acd14e08&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;GitHub Gist Id&lt;/strong&gt; - ac9386100024b91a298b39d61959a885&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Last step to hit the download keys again : 
&lt;code&gt;Shift + Alt + D&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Once you select download, after downloading. 
Settings Sync will display you Summary containing the list of each files and extension being downloaded.&lt;/li&gt;
&lt;li&gt;New popup will be opened to allow you to restart the code to apply the settings.&lt;/li&gt;
&lt;/ul&gt;




&lt;h4&gt;
  
  
  That's it, Now you are good to go!
&lt;/h4&gt;




&lt;p&gt;&lt;strong&gt;Disclaimer :&lt;/strong&gt; My Setting &amp;amp; Configuration are for Web Development &amp;amp; Competitive Coding in C++ (mainly) but you can do this for any programming language with some little changes!&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;If you have any query or facing some problem regarding this, you are always welcome to ask for any help!&lt;br&gt;
Just comment down, i'll there to help you!&lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;&lt;strong&gt;Thanks for giving this a read!&lt;/strong&gt;&lt;/p&gt;




&lt;p&gt;&lt;strong&gt;Happy Coding XD&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>competitivecoding</category>
      <category>codenewbie</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
