<?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: Simon Toledano</title>
    <description>The latest articles on DEV Community by Simon Toledano (@simontoledano).</description>
    <link>https://dev.to/simontoledano</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%2F1121697%2Fb205fe56-92ca-4137-83ed-c11d077bb0c7.jpeg</url>
      <title>DEV Community: Simon Toledano</title>
      <link>https://dev.to/simontoledano</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/simontoledano"/>
    <language>en</language>
    <item>
      <title>Slaying the Ruby Gym Godzilla</title>
      <dc:creator>Simon Toledano</dc:creator>
      <pubDate>Fri, 11 Aug 2023 02:40:26 +0000</pubDate>
      <link>https://dev.to/simontoledano/slaying-the-ruby-gym-godzilla-30k1</link>
      <guid>https://dev.to/simontoledano/slaying-the-ruby-gym-godzilla-30k1</guid>
      <description>&lt;p&gt;Ruby Gym was the definition of delayed gratification. At first, taking on each exercise was challenging and frustrating to be honest, but I tried to carve out a chunk of time each day to chip away it. At the Leap Year exercise, I felt stuck for some time but decided to walk away from it and sure enough the following day it took me 10 minutes to wrap my head around how I wanted to finish my code. I think at the Secret Encoder exercise I finally felt like I was "getting it".  I realized writing code is feeling so much more gratifying with a couple of wins under my belt. I am definitely feeling more confident each day. Here are some big takeaways from completing the Ruby Gym module:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;The &lt;code&gt;.each&lt;/code&gt; method is super helpful to access objects within an array and apply some action/block of code to each item. It really is a powerful method that I will use with large collections of data. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;The &lt;code&gt;.gsub&lt;/code&gt; method is my best friend. No, but in all seriousness, it is super helpful for reformatting characters. I will end up using it a lot in the future. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Instead of trying to work hastily and inadvertently make a problem more complicated, remember to break down complex problems into smaller parts (thank God for sticky notes). On a couple of the Ruby Gym exercises I found myself working hastily but not efficiently. I ended up having to work longer and inefficiently since I made mistakes I later needed to clean up within my code. &lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Altogether, the Ruby Gym exercises were tough but definitely gratifying. I am novice when it comes to this coding game, but I am definitely excited for what the future holds. I will continue to work hard and persevere. Onward and upwards my friends! &lt;/p&gt;

</description>
      <category>beginners</category>
      <category>ruby</category>
    </item>
    <item>
      <title>TIL Day 4 HTML and Ruby</title>
      <dc:creator>Simon Toledano</dc:creator>
      <pubDate>Wed, 26 Jul 2023 14:32:10 +0000</pubDate>
      <link>https://dev.to/simontoledano/til-day-4-html-and-ruby-4jg2</link>
      <guid>https://dev.to/simontoledano/til-day-4-html-and-ruby-4jg2</guid>
      <description>&lt;p&gt;I decided to do some reflecting before moving forward on any of my assignments since it has been days since I last posted. Here are some recent learnings: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;There is a difference between flex-items and flex-containers (obvious for me now). Flex-containers are elements whose display value property is an HTML element (often the parent element) whose display property's value is flex or inline-flex. Flex-items are the direct children of a flex-container (a parent element). &lt;/li&gt;
&lt;li&gt;When working on the styling you should use the following hack to better see each element on the page: 
&lt;code&gt;* {
border: thin red solid;
}&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Ruby has built-in skills called methods which enables the interpreter to read and show you results within a console&lt;/li&gt;
&lt;li&gt;Ruby can do some neat computations: addition &lt;code&gt;+&lt;/code&gt;, subtraction &lt;code&gt;-&lt;/code&gt;, multiplication &lt;code&gt;*&lt;/code&gt;, division&lt;code&gt;/&lt;/code&gt;, exponents &lt;code&gt;**&lt;/code&gt;, and modulo &lt;code&gt;%&lt;/code&gt;. &lt;/li&gt;
&lt;li&gt;Ruby allows for us to get user input by using &lt;code&gt;get.chomp&lt;/code&gt;. Retrieving user input through this method felt very different in comparison to HTML, so I was initially thrown off but that's life.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Anyways, my first impression of Ruby is that it is a beast, but I am down for the challenge. I hope to keep trudging on through the Codecademy Ruby course these next couple days. &lt;/p&gt;

</description>
      <category>html</category>
      <category>ruby</category>
      <category>css</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Slowing Down to Enjoy the Journey - TIL Day 3</title>
      <dc:creator>Simon Toledano</dc:creator>
      <pubDate>Fri, 21 Jul 2023 03:07:52 +0000</pubDate>
      <link>https://dev.to/simontoledano/slowing-down-to-enjoy-the-journey-til-day-3-1m9d</link>
      <guid>https://dev.to/simontoledano/slowing-down-to-enjoy-the-journey-til-day-3-1m9d</guid>
      <description>&lt;p&gt;I decided to pump the breaks today and went back to review some basics around HTML. &lt;/p&gt;

&lt;p&gt;Here are some of my key learnings from today: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;The &lt;code&gt;&amp;lt;!DOCTYPE html&lt;/code&gt; declaration should be the first line within a HTML&lt;/li&gt;
&lt;li&gt;Info related to the web page like the title should be within the &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; on the particular page &lt;/li&gt;
&lt;li&gt;Anchor tags &lt;code&gt;a&lt;/code&gt; are helpful when trying to link an internal page, external page, and content within the same page &lt;/li&gt;
&lt;li&gt;
&lt;code&gt;id&lt;/code&gt; can be added to &lt;code&gt;a&lt;/code&gt; to create sections and be able to jump to each of them. &lt;/li&gt;
&lt;li&gt;Be mindful of indentation when writing code so it is easier to read code and understand relationships between elements.
&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>html</category>
      <category>beginners</category>
    </item>
    <item>
      <title>TIL Day 2</title>
      <dc:creator>Simon Toledano</dc:creator>
      <pubDate>Thu, 20 Jul 2023 03:30:08 +0000</pubDate>
      <link>https://dev.to/simontoledano/til-day-2-11j</link>
      <guid>https://dev.to/simontoledano/til-day-2-11j</guid>
      <description>&lt;p&gt;Today, I learned all about the fundamentals of Cascading Style Sheets (CSS). It took me a lot longer than I envisioned to complete the Codecademy lesson, but I am beginning to get the hang of it. Something that stayed with me is how much HTML and CSS speak to one another and how important it is to keep in mind readability and maintainability of a HTML file when writing it. I think tomorrow I will review chaining; I struggled majorly with it. I understand when writing a CSS rule it allows for two or more selectors at the same time, but I am still feeling a little confused about its usefulness. Although today felt a little more strenuous, I am still feeling hopeful about this opportunity and I am relieved to be making incremental wins everyday. &lt;/p&gt;

</description>
      <category>beginners</category>
      <category>css</category>
    </item>
    <item>
      <title>TIL Day 1</title>
      <dc:creator>Simon Toledano</dc:creator>
      <pubDate>Wed, 19 Jul 2023 02:07:20 +0000</pubDate>
      <link>https://dev.to/simontoledano/til-day-1-46p0</link>
      <guid>https://dev.to/simontoledano/til-day-1-46p0</guid>
      <description>&lt;p&gt;Today, I started the journey in learning how to code. While I am entirely new to this, I am excited to make incremental wins towards becoming a software developer. Today was interesting, I started off with the Hello, World! assignment and I found it fascinating to utilize the repository on GitHub and had fun using CodeSpace to deploy my first app. Woot woot! After taking a much needed break, I began the work of becoming familiar with HTML. The language seems intuitive and relatively straightforward. It was really energizing to see my work build in the terminal and develop the HTML page overtime. I really hope to carry my momentum into tomorrow learnings on CSS and I am praying tomorrow is as productive. &lt;/p&gt;

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