<?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: Sree Chandan R</title>
    <description>The latest articles on DEV Community by Sree Chandan R (@sreechandan).</description>
    <link>https://dev.to/sreechandan</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%2F291681%2F844b2f1a-2361-4133-a1cc-d4ddfbb1193d.jpeg</url>
      <title>DEV Community: Sree Chandan R</title>
      <link>https://dev.to/sreechandan</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sreechandan"/>
    <language>en</language>
    <item>
      <title>How I got into coding.</title>
      <dc:creator>Sree Chandan R</dc:creator>
      <pubDate>Sat, 07 Nov 2020 17:15:23 +0000</pubDate>
      <link>https://dev.to/sreechandan/how-i-got-into-coding-26h0</link>
      <guid>https://dev.to/sreechandan/how-i-got-into-coding-26h0</guid>
      <description>&lt;p&gt;Ever since I was very young, I would buy electronic toys and after I played with them for sometime I would start to dismantle them. I collected the electronic parts, like boards, motors, gears and stuff with the hopes and dreams of building something with them someday. &lt;em&gt;I even built a "flying" bird cage that did not fly using an unused bird cage (RIP birdy) and lots of electronic parts I collected. While it's 'wings' flapped it wasnt enough.&lt;/em&gt;&lt;br&gt;
One day Someone introduced me to computers and even built me a PC to take home. I had it before I had a smartphone in my life. For a few years that computer meant nothing more than something to play games in and an excuse to make easy friends. My memories are faded but somehow I learned about coding. Even before I took Computer Science as my subject in my 11th and 12th I was learning to code by myself. I even took a tiny c/c++ course before I started my 11th. For some people this won't sound so good, but I could fail in every subject and not worry about it as I would do well in CS. Sure I worried a bit for all the social and parental pressure that was around me. I just wanted to learn coding and didn't know why they were force feeding me everything else. &lt;br&gt;
I'm not a coding wizard, ninja or prodigy. I still am quite novice in coding. I don't know what the journey ahead is like for me but I'm very thankful to the person that introduced me to playing games on a computer and building me a computer to take home. It really set a positive direction in my life that I really needed. &lt;br&gt;
Thanks for reading :)&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Module, Package, Library</title>
      <dc:creator>Sree Chandan R</dc:creator>
      <pubDate>Fri, 13 Dec 2019 18:54:38 +0000</pubDate>
      <link>https://dev.to/sreechandan/module-package-library-3e00</link>
      <guid>https://dev.to/sreechandan/module-package-library-3e00</guid>
      <description>&lt;h6&gt;
  
  
  December 2019
&lt;/h6&gt;

&lt;h3&gt;
  
  
  Preface:
&lt;/h3&gt;

&lt;p&gt;I would like to consider myself as a newbie to coding. At some point, I got confused with a lot of coding lingos. Especially as I had to jump between python, javascript and for some time c sharp.&lt;br&gt;
Hence this post is a learn-along. As I learn more I will update/modify this post with relevant elaboration and talk about some weird/edge cases.&lt;br&gt;
official docs: &lt;a href="https://docs.python.org/"&gt;https://docs.python.org/&lt;/a&gt;&lt;/p&gt;



&lt;p&gt;For now, I will share in brief a little bit with Python in mind.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;-- foo.py
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's a python file and also a python &lt;strong&gt;module&lt;/strong&gt;.&lt;br&gt;
 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;-- fooDir
   -- foo.py
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's just a python file(module) in a folder.&lt;br&gt;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;-- fooDir
   -- __init__.py
   -- foo.py
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Now that's a python &lt;strong&gt;package&lt;/strong&gt;. Magic. The magic is &lt;em&gt;__init__.py&lt;/em&gt;&lt;br&gt;
A Package is a collection of modules neatly "packaged-up" into a directory. The &lt;em&gt;__init__.py&lt;/em&gt; file is just how python recognizes that the directory is meant to be a package.&lt;/p&gt;

&lt;p&gt;Now, whats a &lt;strong&gt;library&lt;/strong&gt;?&lt;br&gt;
A library is a collection of functionalities. It can be just a module or a package.&lt;/p&gt;

&lt;p&gt;Next up: library vs framework vs API. That's spicy.&lt;/p&gt;




&lt;h3&gt;
  
  
  Thoughts
&lt;/h3&gt;

&lt;p&gt;It is said teaching makes you learn better. And for the most part, these posts are a way of self-improvement for me. If you find any corrections you want to point out please do it, but try to be respectful.&lt;/p&gt;

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