<?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: Nischay Gowda</title>
    <description>The latest articles on DEV Community by Nischay Gowda (@thenischaygowda).</description>
    <link>https://dev.to/thenischaygowda</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%2F285086%2F145301ed-232b-45cd-9f4d-d5ac45355c4d.jpg</url>
      <title>DEV Community: Nischay Gowda</title>
      <link>https://dev.to/thenischaygowda</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/thenischaygowda"/>
    <language>en</language>
    <item>
      <title>Unlearn and Re-Learn right way at 25</title>
      <dc:creator>Nischay Gowda</dc:creator>
      <pubDate>Sat, 08 May 2021 03:32:38 +0000</pubDate>
      <link>https://dev.to/thenischaygowda/unlearn-and-re-learn-right-way-at-25-26im</link>
      <guid>https://dev.to/thenischaygowda/unlearn-and-re-learn-right-way-at-25-26im</guid>
      <description>&lt;h2&gt;
  
  
  Retrace
&lt;/h2&gt;

&lt;p&gt;Turn 25 this year, lived quarter-life, a graduate, working earning Adult. I have sort of a laid-out plan for future self, a rough plan, let's say an outline maybe entrepreneur, Developer or explorer, let's see.&lt;/p&gt;

&lt;p&gt;So I took a bit of time to reflect back, to track my present path, and maybe try to join the dots, corrections if necessary. I'm mean hey as if everything goes as planned. 🤣&lt;/p&gt;

&lt;p&gt;Little did I realize, I wasn't going as planned. In fact, It hasn't been correct since school. To be honest, all these years whatever I have learned was only of book knowledge, learning what was only enough to pass the exam. 😑&lt;/p&gt;

&lt;p&gt;I wouldn't say all is lost, that was how things were back then. Get good marks in 10th go to nice college for High school, get good marks there get good college for Under Grad, then a job, life is settled.😅&lt;/p&gt;

&lt;p&gt;Even now this would be fine to take up and normal. End of story. If that's what I want or you as a reader want, stop here. I/you are settled.🎉&lt;/p&gt;

&lt;h2&gt;
  
  
  Connecting Dots — Future
&lt;/h2&gt;

&lt;p&gt;What has already happened can't be changed, but what you can do is go about going forward. I realized to be the best at what you are or want to be, you should have clarity, in-depth conceptual understanding.&lt;/p&gt;

&lt;p&gt;So, at 25 I would want myself to learn with more clarity and conceptual. Starting with change with how to learn anything that's new or what you already know, but not in-depth.&lt;/p&gt;

&lt;p&gt;Upon a bit of research, I came across this Course on Coursera, &lt;a href="https://www.coursera.org/learn/learning-how-to-learn"&gt;Learning How to Learn&lt;/a&gt; — &lt;strong&gt;Barbara Oakley&lt;/strong&gt; and &lt;strong&gt;Dr. Terrence Sejnowski&lt;/strong&gt; as the name suggests it teaches you from scratch to learn concepts in depth using focused learning, chunking, and other neurological concepts which will help you to learn and remember these concepts better and be an expert.&lt;/p&gt;

&lt;h2&gt;
  
  
  Closure
&lt;/h2&gt;

&lt;p&gt;I would want to implement this new change in the way I learn new things or things I already know to learn better.&lt;/p&gt;

&lt;p&gt;If you have any other way or techniques which you know or come across please let me know in the comments below.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Follow for more short write-ups and clap if you like this. See you soon with a follow-up of my progress.&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

</description>
      <category>devjournal</category>
    </item>
    <item>
      <title>Consonant value - COdewars</title>
      <dc:creator>Nischay Gowda</dc:creator>
      <pubDate>Thu, 25 Feb 2021 05:16:07 +0000</pubDate>
      <link>https://dev.to/thenischaygowda/consonant-value-coodewars-34na</link>
      <guid>https://dev.to/thenischaygowda/consonant-value-coodewars-34na</guid>
      <description>&lt;h3&gt;
  
  
  Day1 - Codewars Python
&lt;/h3&gt;

&lt;p&gt;Kya - 5&lt;/p&gt;

&lt;p&gt;Coding problem - &lt;a href="https://www.codewars.com/kata/59c633e7dcc4053512000073"&gt;Consonant value&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here is my solution with the necessary comments. Please suggest if any method to optimize the code.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;solve&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;s&lt;/span&gt;&lt;span class="p"&gt;):&lt;/span&gt;

    &lt;span class="c1"&gt;# Form dict for a-z with 1-26
&lt;/span&gt;    &lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="nn"&gt;string&lt;/span&gt;
    &lt;span class="n"&gt;alpha_dict&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{}&lt;/span&gt;
    &lt;span class="n"&gt;i&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;
    &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;letter&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="n"&gt;string&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;ascii_lowercase&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="n"&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="n"&gt;alpha_dict&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="n"&gt;letter&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;i&lt;/span&gt;

    &lt;span class="n"&gt;list_word&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[]&lt;/span&gt;

    &lt;span class="c1"&gt;# For first iter, temp is empty string.
&lt;/span&gt;    &lt;span class="n"&gt;temp&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt;&lt;span class="s"&gt;''&lt;/span&gt;
    &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;letter&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="n"&gt;s&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="n"&gt;letter&lt;/span&gt; &lt;span class="ow"&gt;not&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="s"&gt;'aeiou'&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
            &lt;span class="n"&gt;temp&lt;/span&gt; &lt;span class="o"&gt;+=&lt;/span&gt; &lt;span class="n"&gt;letter&lt;/span&gt;
        &lt;span class="k"&gt;else&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
            &lt;span class="c1"&gt;# The end of consecutive consonant words.
&lt;/span&gt;            &lt;span class="n"&gt;list_word&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;append&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;temp&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
            &lt;span class="n"&gt;temp&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="s"&gt;''&lt;/span&gt;


    &lt;span class="c1"&gt;# Remove empty strings
&lt;/span&gt;    &lt;span class="k"&gt;if&lt;/span&gt; &lt;span class="s"&gt;''&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="n"&gt;list_word&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="n"&gt;list_word&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;remove&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s"&gt;''&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

    &lt;span class="k"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;list_word&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

    &lt;span class="c1"&gt;# Get the coresponding leter value, and add for 
&lt;/span&gt;    &lt;span class="c1"&gt;# consecutive values.
&lt;/span&gt;    &lt;span class="n"&gt;word_value&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;[]&lt;/span&gt;
    &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;word&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="n"&gt;list_word&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
        &lt;span class="n"&gt;temp&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="mi"&gt;0&lt;/span&gt;
        &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;letter&lt;/span&gt; &lt;span class="ow"&gt;in&lt;/span&gt; &lt;span class="n"&gt;word&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;
            &lt;span class="n"&gt;temp&lt;/span&gt; &lt;span class="o"&gt;+=&lt;/span&gt; &lt;span class="n"&gt;alpha_dict&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="n"&gt;letter&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;

        &lt;span class="n"&gt;word_value&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="n"&gt;append&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;temp&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;

    &lt;span class="k"&gt;return&lt;/span&gt; &lt;span class="nb"&gt;max&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;word_value&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>100daysofcode</category>
      <category>python</category>
      <category>codenewbie</category>
    </item>
    <item>
      <title>Kata-Eveyrday</title>
      <dc:creator>Nischay Gowda</dc:creator>
      <pubDate>Thu, 25 Feb 2021 04:54:10 +0000</pubDate>
      <link>https://dev.to/thenischaygowda/kata-eveyrday-43j9</link>
      <guid>https://dev.to/thenischaygowda/kata-eveyrday-43j9</guid>
      <description>&lt;p&gt;Hey, guys as part of learning and upskilling myself in Python programming and problem-solving. I have taken a challenge to solve at least 1 Kata every day from CodeWars.&lt;/p&gt;

&lt;p&gt;My CodeWars profile: &lt;a href="https://www.codewars.com/users/Nischay%20"&gt;Nischay Gowda&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;With this hope to be consistent and proactive in solving.&lt;/p&gt;

</description>
      <category>100daysofcode</category>
      <category>python</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
