<?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: Edouble79</title>
    <description>The latest articles on DEV Community by Edouble79 (@edouble79).</description>
    <link>https://dev.to/edouble79</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%2F715854%2F3cd2d759-7ad5-41e0-b1f6-22998dab8346.jpg</url>
      <title>DEV Community: Edouble79</title>
      <link>https://dev.to/edouble79</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/edouble79"/>
    <language>en</language>
    <item>
      <title>Blog Post 13 Understanding Strings, Arrays, and Hash in Ruby</title>
      <dc:creator>Edouble79</dc:creator>
      <pubDate>Wed, 02 Mar 2022 18:47:21 +0000</pubDate>
      <link>https://dev.to/edouble79/blog-post-13-understanding-strings-arrays-and-hash-in-ruby-3nf3</link>
      <guid>https://dev.to/edouble79/blog-post-13-understanding-strings-arrays-and-hash-in-ruby-3nf3</guid>
      <description>&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--AFX6U1a5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ljpanjzlzlc9jep2wej8.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--AFX6U1a5--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ljpanjzlzlc9jep2wej8.jpeg" alt="Confused man" width="420" height="600"&gt;&lt;/a&gt;As I continued to take a step back to understand Ruby more I came across Strings, Arrays, and Hash. Sometimes I feel I have to simplify the terminology for me to understand and grasp the programming language better. &lt;/p&gt;

&lt;p&gt;To me the term String refers to basic piece of data.  It may contain letters, numbers, or even symbols.  An example of this can be, "I love Ruby" or 'I love Ruby'.  Strings can be done by using single or double quotes as mentioned earlier.&lt;/p&gt;

&lt;p&gt;What is an Array? It is like a container or even structure that can store multiple values.  What does that even mean? Here is an example that I used using my family members.  &lt;/p&gt;

&lt;p&gt;family = Array["Esme", "Aria", "Crystal"] &lt;/p&gt;

&lt;p&gt;The container/structure in that code above is family and the names of my family members are the array elements.  &lt;/p&gt;

&lt;p&gt;Lastly a Hash is like a collection of unique things to a specific value.  What does that even mean right? It almost acts like an array where we store pieces of information but with a Hash you can store something called key value pair.  We can store a value and give it a key which is kind of like giving it a name. For instance, using a dictionary we have a word and then the definition.  So the word is the "key" and the "value" would be the definition.  &lt;/p&gt;

&lt;p&gt;At first I did not understand it so I had to read and watch videos to dumb it down for me.  Here is an example that helped me understand it.&lt;/p&gt;

&lt;p&gt;states = {&lt;br&gt;
       "Illinois" =&amp;gt; "IL",&lt;br&gt;
       "Puerto Rico" =&amp;gt; "SJ"&lt;br&gt;
}&lt;/p&gt;

&lt;p&gt;Here we have the states in "key" form and the value would be the abbreviated states in two letters.  The =&amp;gt; symbols serve as a "map" to link the "key"/state in to the "value"/letters on the right.  Seeing this multiple times has helped me understand how it works. Now applying it in a real job setting....only time will tell.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Blog post 12 Compound &amp; Complex Conditions</title>
      <dc:creator>Edouble79</dc:creator>
      <pubDate>Thu, 17 Feb 2022 17:10:46 +0000</pubDate>
      <link>https://dev.to/edouble79/blog-post-12-compound-complex-conditions-4i61</link>
      <guid>https://dev.to/edouble79/blog-post-12-compound-complex-conditions-4i61</guid>
      <description>&lt;p&gt;In today's blog, I decided with the help of my mentor Gino, I needed to go back to understanding Ruby a bit more because I was having a very difficult time with Ruby on Rails.  Sometimes you have to take a step back...&lt;/p&gt;

&lt;p&gt;The learning goals for this specific lesson I was working on were as follows,&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Explore the Truth Table &amp;amp; the Precedence&lt;/li&gt;
&lt;li&gt;Practice expressing &amp;amp; evaluating complex conditions&lt;/li&gt;
&lt;li&gt;Practice making parse trees&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;The truth table was easy to understand in the ADA curriculum because of an example they gave.  I flipped that using my own experience in Djing.  If I need to dj at an event I would need my turntables and mixer. This is an &amp;amp;&amp;amp; (and) example. Understanding the truth table and precedence is like understanding what goes in order as far as executing a math equation, well that is how I try to comprehend.&lt;/p&gt;

&lt;p&gt;I have learned that operations that have a higher precedence in the operations are evaluated before the operations with the lower precedence.  This list from highest to lowest in precedence form helped in understanding how this operates.&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;```true &amp;amp;&amp;amp; true   # =&amp;gt; true and true is true&lt;br&gt;
true &amp;amp;&amp;amp; false  # =&amp;gt; true and false is false&lt;br&gt;
false &amp;amp;&amp;amp; true  # =&amp;gt; false and true is false&lt;br&gt;
false &amp;amp;&amp;amp; false # =&amp;gt; false and false is false&lt;/p&gt;

&lt;p&gt;true || true   # =&amp;gt; true or true is true&lt;br&gt;
true || false  # =&amp;gt; true or false is true&lt;br&gt;
false || true  # =&amp;gt; false or true is true&lt;br&gt;
false || false # =&amp;gt; false or false is false```&lt;br&gt;
&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Blog Post 11 Anatomy of routes.rb</title>
      <dc:creator>Edouble79</dc:creator>
      <pubDate>Tue, 01 Feb 2022 15:42:22 +0000</pubDate>
      <link>https://dev.to/edouble79/blog-post-11-anatomy-of-routesrb-1ngk</link>
      <guid>https://dev.to/edouble79/blog-post-11-anatomy-of-routesrb-1ngk</guid>
      <description>&lt;p&gt;Hello all! Since my last blog I have been digging deep into understanding Rails using VScode.  The language seemed familiar from Ruby when I took the lessons at CodeCademy.  &lt;/p&gt;

&lt;p&gt;A couple of things I have learned in Rails is R.E.S.T. and GET.&lt;br&gt;
Understanding the connection of the Request method and Path on how they make up the first half of a Rails route.  The second part/half is the route action, the Ruby class and method that will take care of the incoming request.&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;&lt;code&gt;Rails.application.routes.draw do&lt;br&gt;
     # verb 'path', to: 'controller#action'&lt;br&gt;
     get '/books', to: 'books#index'&lt;br&gt;
   end&lt;/code&gt;&lt;br&gt;
&lt;/p&gt;

&lt;p&gt;I was able to break down the code by understanding that the verb was "GET", the 'path' was '/books', and the controller#action was the 'books#index' line.  This code reminded me of the Ruby language I was learning in Codecademy and I was able to remember it but also apply it in a new curriculum I am learning with Rails. &lt;/p&gt;

</description>
    </item>
    <item>
      <title>Blog Post #10</title>
      <dc:creator>Edouble79</dc:creator>
      <pubDate>Thu, 06 Jan 2022 16:05:04 +0000</pubDate>
      <link>https://dev.to/edouble79/blog-post-10-1k81</link>
      <guid>https://dev.to/edouble79/blog-post-10-1k81</guid>
      <description>&lt;p&gt;It has been a few weeks since I have made a post on my learning.  So far I have received a couple of certificates in JavaScript, HTML, and CSS.  I still believed I have a lot to learn.&lt;/p&gt;

&lt;p&gt;The pic below has helped me to understand the structure especially when I was creating my web page with my mentor Gino.  For those that are starting out and are completely lost like I was late in 2021 this will be greatly in how HTML works.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--s2CV_j1e--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ylrg9v49kcsbigkqnmh2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--s2CV_j1e--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ylrg9v49kcsbigkqnmh2.png" alt="HTML structure" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Blog Post #9</title>
      <dc:creator>Edouble79</dc:creator>
      <pubDate>Wed, 01 Dec 2021 14:41:56 +0000</pubDate>
      <link>https://dev.to/edouble79/blog-post-8-3fl8</link>
      <guid>https://dev.to/edouble79/blog-post-8-3fl8</guid>
      <description>&lt;p&gt;It has been a while but my learning continues.  I am starting to see how front-end, back-end, and Full Stack Developer all tie in.  Gino has me currently learning a curriculum from Ada-Developers Academy, an app called SoloLearn, and continuing working on my github site. &lt;/p&gt;

&lt;p&gt;The app has helped me in understanding what goes in HTML index file compared to a CSS.index file.  For example, in a HTML.index file, that is where I would structure the content that would appear on a website such as images, texts, and videos. On the CSS side, that would be considered the styling to the site and presentation which would be colors, layout, and fonts.  &lt;/p&gt;

&lt;p&gt;I forgot to mention that the book Gino gave me, "A Mind for Numbers" by Barbara Oakley has been great and I am currently on chapter 11. &lt;/p&gt;

</description>
    </item>
    <item>
      <title>Blog Post 8: Learning Journey Week of 11/8/2021
</title>
      <dc:creator>Edouble79</dc:creator>
      <pubDate>Fri, 12 Nov 2021 14:24:57 +0000</pubDate>
      <link>https://dev.to/edouble79/blog-post-8-learning-journey-week-of-1182021-1aa</link>
      <guid>https://dev.to/edouble79/blog-post-8-learning-journey-week-of-1182021-1aa</guid>
      <description>&lt;p&gt;Another week went by with my journey into learning Coding, Ruby, HTML, and CSS. I feel that as everyday passes, I am able to understand this new world that I have submerged myself into. &lt;/p&gt;

&lt;p&gt;Another learning tool that my mentor Gino has given me was advice on how to approach learning with a book by Barbara Oakley titled "A Mind for Numbers." I rarely read but Gino encouraged me to read the book and understand how learning takes different shapes and sizes.  I am currently in chapter 5 and it is going great.  &lt;/p&gt;

&lt;p&gt;Gino had me download an app called SoloCode and that has been a great help in understanding how HTML and CSS worked together when I created github.io page in VSCode.  There are fill in the blanks when taking the lessons on the app as well as short quizzes that I am confident in saying I have passed them all! &lt;/p&gt;

</description>
    </item>
    <item>
      <title>Blog Post 7: Learning Journey Week of 11/1/2021</title>
      <dc:creator>Edouble79</dc:creator>
      <pubDate>Fri, 05 Nov 2021 15:13:59 +0000</pubDate>
      <link>https://dev.to/edouble79/blog-post-7-10n5</link>
      <guid>https://dev.to/edouble79/blog-post-7-10n5</guid>
      <description>&lt;p&gt;Week November 1st-5th 2021 was interesting because for the first time ever during this journey into Software Engineering.  I kind of saw the vision or felt the vision Gino(mentor) was trying to show me. Gino suggested I invest in note cards to remember certain vocabulary,codes, and steps. &lt;/p&gt;

&lt;p&gt;In the beginning of the week Gino had me read several articles/curriculums on program fundamentals.  Here is quick glance into what topics I read here (&lt;a href="https://github.com/Ada-Developers-Academy/textbook-curriculum/tree/main/00-programming-fundamentals"&gt;https://github.com/Ada-Developers-Academy/textbook-curriculum/tree/main/00-programming-fundamentals&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;While reading the curriculum I noticed that almost everything I saw was what Gino has been teaching all along! For example, the proper steps in to push changes in GitHub Gino has been stressing to me how important it was and is.  I used one of my note cards for that.  Also I ran into a merge conflict issue with Gino in regards to some information I was updating in my about me page from my GitHub.io site.  In a weird way I was excited that I ran into this issue because I had the opportunity to see how the issue should be resolved in order to move forward in GitHub. &lt;/p&gt;

</description>
    </item>
    <item>
      <title>Blog Post 6: Learning Week of 10/25/2021</title>
      <dc:creator>Edouble79</dc:creator>
      <pubDate>Tue, 26 Oct 2021 19:07:44 +0000</pubDate>
      <link>https://dev.to/edouble79/blog-post-6-part-1-1epb</link>
      <guid>https://dev.to/edouble79/blog-post-6-part-1-1epb</guid>
      <description>&lt;p&gt;Another week of Ruby went better than last week.  This week(October 25-29th) was great, I honestly felt I was finally understanding the jargon as they say. In my lesson of Ruby,   Object Oriented Programming 1 and 2 was great for my understanding.  The syntax below was easy to use.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="k"&gt;class&lt;/span&gt; &lt;span class="nc"&gt;ClassName&lt;/span&gt;
  &lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;method_name&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;parameter&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="vi"&gt;@class_variable&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;parameter&lt;/span&gt;
  &lt;span class="k"&gt;end&lt;/span&gt;
&lt;span class="k"&gt;end&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;The reason why I choose this syntax is because I am now confident in how to breakdown what I am looking at...somewhat.&lt;/p&gt;

&lt;p&gt;When I look at that syntax above I first noticed that there is a class that we define as ClassName followed by the method that will be defined as method_name, we then need a parameter that will go into the parenthesis.  Once we have our parameter we then can assign it to equal to the variable which is why we see @class_variable = parameter.  &lt;/p&gt;

&lt;p&gt;In the example below dog was used to insert in the ClassName section. We then created a method to initialize within the class of Dog.&lt;/p&gt;

&lt;p&gt;After we use the initialize method, we insert two parameters, name and breed.&lt;/p&gt;

&lt;p&gt;Inside that initialize method we can now assign those two parameters to the variables @name and @breed respectively&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="k"&gt;class&lt;/span&gt; &lt;span class="nc"&gt;Dog&lt;/span&gt;
  &lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;initialize&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;name&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;breed&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
  &lt;span class="vi"&gt;@name&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;name&lt;/span&gt;
  &lt;span class="vi"&gt;@breed&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;breed&lt;/span&gt;
  &lt;span class="k"&gt;end&lt;/span&gt;
&lt;span class="k"&gt;end&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Another thing I wanted to add that Gino(Mentor) would ALWAYS remind me is that whenever you have a class, make sure to include end when the code is complete but ALSO when defining a method you have to add end for that as well which is why we see not one but two "end"s on the bottom of this particular code.&lt;/p&gt;

&lt;p&gt;Again, I may have not have the correct jargon or terminology but this is coming from a 42 year old that is in the process of switching careers from Teaching to this.  So far I am enjoying it and learning at my own pace.   &lt;/p&gt;

</description>
    </item>
    <item>
      <title>Blog Post #5:Learning Week of 10/18/2021</title>
      <dc:creator>Edouble79</dc:creator>
      <pubDate>Fri, 22 Oct 2021 17:12:32 +0000</pubDate>
      <link>https://dev.to/edouble79/blog-post-5-ngd</link>
      <guid>https://dev.to/edouble79/blog-post-5-ngd</guid>
      <description>&lt;p&gt;Hello everyone, week of October 18-22 was ups and downs.  Tears, tears, and more tears because I was still having trouble with the coding language in Ruby(Codecademy) and how it applies in real life.  As a former CPS teacher I had tools to use in class whether it was classroom management, how to speak, how to facilitate and how to execute the curriculum to my students.  In this IT world I am having a difficult time learning what first_prisms, Blocks, Procs, Lambdas mean.  Interpolation was another one!&lt;/p&gt;

&lt;p&gt;Towards the end of the week I began another lesson called "Object-Oriented Programming" which was interesting and fun.  Here's a syntax I learned in Ruby that describes @ symbol before a variable to signify that it is an instance variable.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="k"&gt;class&lt;/span&gt; &lt;span class="nc"&gt;Person&lt;/span&gt;
  &lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;initialize&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="nb"&gt;name&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="vi"&gt;@name&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="nb"&gt;name&lt;/span&gt;
  &lt;span class="k"&gt;end&lt;/span&gt;
&lt;span class="k"&gt;end&lt;/span&gt;
&lt;span class="n"&gt;matz&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="no"&gt;Person&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;new&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;"Yukihiro"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Another syntax I learned was that the attributes in a parameter correspond to what makes up a vehicle, see example below.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight ruby"&gt;&lt;code&gt;&lt;span class="k"&gt;class&lt;/span&gt; &lt;span class="nc"&gt;Car&lt;/span&gt;  
  &lt;span class="k"&gt;def&lt;/span&gt; &lt;span class="nf"&gt;initialize&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;make&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="n"&gt;model&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
    &lt;span class="vi"&gt;@make&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;make&lt;/span&gt;
    &lt;span class="vi"&gt;@model&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;model&lt;/span&gt;
  &lt;span class="k"&gt;end&lt;/span&gt;
&lt;span class="k"&gt;end&lt;/span&gt;
&lt;span class="no"&gt;Kitt&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="no"&gt;Car&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;new&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="s2"&gt;"Pontiac"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="s2"&gt;"Trans Am"&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>Blog Post #4</title>
      <dc:creator>Edouble79</dc:creator>
      <pubDate>Mon, 18 Oct 2021 15:43:54 +0000</pubDate>
      <link>https://dev.to/edouble79/blog-post-4-3aep</link>
      <guid>https://dev.to/edouble79/blog-post-4-3aep</guid>
      <description>&lt;p&gt;Week of October 11th-15th-I had a chance to start the week off with "The Zen of Ruby" which ran about 20 lessons/exercises that included the following, Ternary Conditional Expressions, Case Languages, .updownto &amp;amp; .downto methods, Concatenations, Implicit Returns.  Again it was another week where I was trying to understand the language, syntax and overall exercise.  Sometimes I find myself asking, "how do people do it with coding and language of understanding?" I saw a bit of improvement in understanding how to replace + and &amp;lt;&amp;lt; with .to_s for non string values. What I value is time and patience...which is what I have in understanding this.  &lt;/p&gt;

</description>
    </item>
    <item>
      <title>Blog post #3</title>
      <dc:creator>Edouble79</dc:creator>
      <pubDate>Mon, 18 Oct 2021 15:34:50 +0000</pubDate>
      <link>https://dev.to/edouble79/blog-post-3-4f83</link>
      <guid>https://dev.to/edouble79/blog-post-3-4f83</guid>
      <description>&lt;p&gt;Week of October 4th saw me dive deeper into Ruby with accessing Hash Values, Iterating over Multidimensional Arrays, Iterating over a Hash, Creating a Histogram, Creating Frequencies, Sorting the Hash, Methods of Blocks &amp;amp; Sorting, Parameters &amp;amp; Arguments, Splat Arguments, How Blocks differ from Methods. What I enjoy about CodeCademy is how you can type in the editor and see if the code is successful or if I need additional assistance I can click on the hint section to give me a bit of a review in terms of what syntaxes and examples I may use to execute the code. &lt;/p&gt;

</description>
    </item>
    <item>
      <title>Blog post #2</title>
      <dc:creator>Edouble79</dc:creator>
      <pubDate>Mon, 18 Oct 2021 15:28:10 +0000</pubDate>
      <link>https://dev.to/edouble79/blog-post-2-2d7a</link>
      <guid>https://dev.to/edouble79/blog-post-2-2d7a</guid>
      <description>&lt;p&gt;Week of September 27th-October 2nd was frustrating for me.  I started out with Loops &amp;amp; Iterations and Infinite Loops.  There was an example like this:&lt;/p&gt;

&lt;p&gt;i = 0&lt;br&gt;
loop do&lt;br&gt;
  i += 1&lt;br&gt;
  print "#{i}"&lt;br&gt;
  break if i &amp;gt; 5&lt;br&gt;
end&lt;br&gt;
This particular syntax was a bit difficult to understand because of the language, I am trying to get use to. &lt;/p&gt;

&lt;p&gt;I also learned about Redacting, .Split method, Control Flow, and data structures.&lt;/p&gt;

&lt;p&gt;As my Mentor Gino says, "Relax Erik and take a break, then come back to it."  I am trying. &lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
