<?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: jazmineubanks</title>
    <description>The latest articles on DEV Community by jazmineubanks (@jazmineubanks).</description>
    <link>https://dev.to/jazmineubanks</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1042670%2Ff78a694b-48c6-41de-8b69-64dd658f7557.jpeg</url>
      <title>DEV Community: jazmineubanks</title>
      <link>https://dev.to/jazmineubanks</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/jazmineubanks"/>
    <language>en</language>
    <item>
      <title>TIL 04/03/23</title>
      <dc:creator>jazmineubanks</dc:creator>
      <pubDate>Tue, 04 Apr 2023 16:51:38 +0000</pubDate>
      <link>https://dev.to/jazmineubanks/til-040323-2n9j</link>
      <guid>https://dev.to/jazmineubanks/til-040323-2n9j</guid>
      <description>&lt;p&gt;Today I started breaking into Rails!&lt;br&gt;
This is helping the ruby side of things make sense and click a little better for me.&lt;br&gt;
I learned an acronym from the professor: RCAV. This stands for route, controller, action, and response. &lt;/p&gt;

</description>
    </item>
    <item>
      <title>TIL 03/31/23</title>
      <dc:creator>jazmineubanks</dc:creator>
      <pubDate>Fri, 31 Mar 2023 16:30:24 +0000</pubDate>
      <link>https://dev.to/jazmineubanks/til-033123-1g2g</link>
      <guid>https://dev.to/jazmineubanks/til-033123-1g2g</guid>
      <description>&lt;p&gt;Almost done with week 5 of my program!&lt;br&gt;
Today I built a QR code with ruby.&lt;br&gt;
I was surprised to see how easy it was, and that it did not take many lines of code.&lt;br&gt;
I watched another youtube video to help explain what each lines does a little better.&lt;br&gt;
Sometimes the repetition helps set things in.&lt;/p&gt;

&lt;p&gt;Today I will be working with APIs and building a program that tells you the weather of your desired location.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>TIL 3/29/23</title>
      <dc:creator>jazmineubanks</dc:creator>
      <pubDate>Wed, 29 Mar 2023 15:15:48 +0000</pubDate>
      <link>https://dev.to/jazmineubanks/til-32923-4gaf</link>
      <guid>https://dev.to/jazmineubanks/til-32923-4gaf</guid>
      <description>&lt;p&gt;Today I am struggling with my linktree project...&lt;br&gt;
for some reason, I can't get all the items in my page to align center.&lt;br&gt;
I have used &lt;em&gt;align: center&lt;/em&gt; and &lt;em&gt;display:flex&lt;/em&gt;... neither are working.&lt;/p&gt;

&lt;p&gt;However, Today I will play along with margins.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>TIL 03/29/23</title>
      <dc:creator>jazmineubanks</dc:creator>
      <pubDate>Wed, 29 Mar 2023 15:12:36 +0000</pubDate>
      <link>https://dev.to/jazmineubanks/til-032923-3aa3</link>
      <guid>https://dev.to/jazmineubanks/til-032923-3aa3</guid>
      <description>&lt;p&gt;Today I learned something vital....&lt;/p&gt;

&lt;p&gt;ALWAYS PUSH TO GITHUB...&lt;/p&gt;

&lt;p&gt;After multiple commits to my linktree project, I lost all my work because I did not push to github and I did not pin my workspace.&lt;br&gt;
Even though it was frustrating to have to redo the entire project, it was a great lesson.&lt;br&gt;
I bet I wont forget to do it again!!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>TIL 03/23/23</title>
      <dc:creator>jazmineubanks</dc:creator>
      <pubDate>Fri, 24 Mar 2023 14:29:59 +0000</pubDate>
      <link>https://dev.to/jazmineubanks/til-032323-2p11</link>
      <guid>https://dev.to/jazmineubanks/til-032323-2p11</guid>
      <description>&lt;p&gt;Today was a very frustrating day as I dived into the EACH module in my Ruby course.&lt;/p&gt;

&lt;p&gt;I was stuck on a specific question for quite some time:&lt;/p&gt;

&lt;h2&gt;
  
  
  Write a program that:
&lt;/h2&gt;

&lt;h1&gt;
  
  
  Asks the user to enter a word.
&lt;/h1&gt;

&lt;h1&gt;
  
  
  The program should print each letter in the word the number of times it appears in the word.
&lt;/h1&gt;

&lt;p&gt;I realized that I was highly overthinking it. I relied on chat GBT to help explain things to me and the answer it provided still was not passing in the ruby course.&lt;br&gt;
I asked for help and others could not figure it out as well.&lt;br&gt;
I decided to take a break and look at it with fresh eyes on 03/24. &lt;br&gt;
At this point I was still frustrated so, I asked another classmate of mine and WALA!&lt;br&gt;
The answer is below: &lt;/p&gt;

&lt;p&gt;puts "Enter a word:"&lt;/p&gt;

&lt;p&gt;answer = gets.chomp.split("")&lt;/p&gt;

&lt;p&gt;answer.each do |letter|&lt;/p&gt;

&lt;p&gt;count = answer.count(letter)&lt;br&gt;
p "#{letter} appears #{count} times"&lt;br&gt;
end&lt;/p&gt;

&lt;p&gt;I understand why this was done in this format. I still believe I need more and more practice!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>TIL 3/20/23</title>
      <dc:creator>jazmineubanks</dc:creator>
      <pubDate>Mon, 20 Mar 2023 20:56:43 +0000</pubDate>
      <link>https://dev.to/jazmineubanks/til-32023-4c21</link>
      <guid>https://dev.to/jazmineubanks/til-32023-4c21</guid>
      <description>&lt;p&gt;Today I have continued to work in ruby. I have worked on integers, float, and strings. I am currently struggling with Integers and float. Today my teacher assistant cleared up what gets.chomp means. Apparently I have been using it all wrong.&lt;/p&gt;

&lt;p&gt;Currently I am on float and this is my question to complete:&lt;/p&gt;

&lt;h1&gt;
  
  
  Output ten divided by 3 rounded to 3 decimal places
&lt;/h1&gt;

&lt;p&gt;I feel like I am overthinking it. I have tried different variations but I cannot figure out how to round it to the 3rd decimal.&lt;br&gt;
My answer at the moment is: p 10 / 3.round(3).to_f&lt;br&gt;
the output keeps coming out as 3.333333333333&lt;/p&gt;

&lt;p&gt;I will work on figuring this out tonight!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>TIL 03/17/23</title>
      <dc:creator>jazmineubanks</dc:creator>
      <pubDate>Fri, 17 Mar 2023 20:23:43 +0000</pubDate>
      <link>https://dev.to/jazmineubanks/til-031723-5eh1</link>
      <guid>https://dev.to/jazmineubanks/til-031723-5eh1</guid>
      <description>&lt;p&gt;Today while brushing up on my ruby skills, I decided to dive into the topic of productivity and how to learn through a course on Coursera. I love learning about how the brain works and how to be a better learner. This will help me progress in my learning!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>TIL 03/15/22</title>
      <dc:creator>jazmineubanks</dc:creator>
      <pubDate>Wed, 15 Mar 2023 20:37:32 +0000</pubDate>
      <link>https://dev.to/jazmineubanks/til-031522-2g5g</link>
      <guid>https://dev.to/jazmineubanks/til-031522-2g5g</guid>
      <description>&lt;p&gt;Today I was working in code academy trying to further my understanding of Loops and arrays. I felt like when I was going over the content about loops, it made sense in my head. However, when it came down to the practice questions, I could not figure out the answers. I believe I need to continue practicing.&lt;/p&gt;

&lt;p&gt;One question I struggled with was: &lt;/p&gt;

&lt;p&gt;Add an if/else statement inside your .each.&lt;/p&gt;

&lt;p&gt;if the current word equals the word to be redacted, then print "REDACTED " with that extra space.&lt;br&gt;
Otherwise (else), print word + " ".&lt;br&gt;
The extra space in both cases prevents the words from running together.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The correct answer to this question is:&lt;/strong&gt;&lt;br&gt;
words.each { |word| &lt;br&gt;
  if word == redact&lt;br&gt;
    print "REDACTED "&lt;br&gt;
  else&lt;br&gt;
        print word + " "&lt;br&gt;
  end }&lt;/p&gt;

&lt;p&gt;I feel like when I am reading the questions, I for some reason cannot make sense of what is being asked of me. I will try to re-read the questions and take things slower, along with my practice. &lt;/p&gt;

</description>
    </item>
    <item>
      <title>TIL 03/14/23</title>
      <dc:creator>jazmineubanks</dc:creator>
      <pubDate>Tue, 14 Mar 2023 16:33:00 +0000</pubDate>
      <link>https://dev.to/jazmineubanks/til-031423-2g2j</link>
      <guid>https://dev.to/jazmineubanks/til-031423-2g2j</guid>
      <description>&lt;p&gt;Today I am still working on Ruby. I am trying to get myself to remember booleans and their meanings, so I will continue to study these.&lt;/p&gt;

&lt;p&gt;(taken from code academy)&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;With &amp;amp;&amp;amp; both comparisons on the left and right must evaluate to true for the entire statement to return true. If the left side does not return true it will not bother trying the right side&lt;/li&gt;
&lt;li&gt;With || either the right or left side must evaluate to true. If the left side evaluates to true, the right side will not be tried because it has met the condition of one side being true.&lt;/li&gt;
&lt;li&gt;With ! you reverse the result. If you’re false you’re now true. if you’re true you’re now false! Just think of it as opposite day!&lt;/li&gt;
&lt;/ol&gt;

</description>
    </item>
    <item>
      <title>TIL 03/13/23</title>
      <dc:creator>jazmineubanks</dc:creator>
      <pubDate>Mon, 13 Mar 2023 19:37:15 +0000</pubDate>
      <link>https://dev.to/jazmineubanks/til-031323-2ck1</link>
      <guid>https://dev.to/jazmineubanks/til-031323-2ck1</guid>
      <description>&lt;p&gt;Today I continue to learn Ruby basics. I practiced more databases and got some clarification on Ruby loops.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>TIL 03/12/23</title>
      <dc:creator>jazmineubanks</dc:creator>
      <pubDate>Sun, 12 Mar 2023 18:06:56 +0000</pubDate>
      <link>https://dev.to/jazmineubanks/til-031223-52l3</link>
      <guid>https://dev.to/jazmineubanks/til-031223-52l3</guid>
      <description>&lt;p&gt;Today I learned about loops in Ruby. &lt;br&gt;
*&lt;strong&gt;&lt;em&gt;Simple Loops&lt;/em&gt;&lt;/strong&gt;*&lt;br&gt;
loop do&lt;br&gt;
  print "Do you want to continue? (y/n) "&lt;br&gt;
  answer = gets.chomp.downcase&lt;br&gt;
end&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;While loops:&lt;/strong&gt;&lt;br&gt;
 answer = ""&lt;br&gt;
while answer != "n"&lt;br&gt;
  print "Do you want me to repeat this pointless loop again? (y/n) "&lt;br&gt;
  answer = gets.chomp.downcase&lt;br&gt;
end&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Until Loops&lt;/strong&gt;**&lt;br&gt;
answer = ""&lt;br&gt;
until answer == "no" do&lt;br&gt;
  print "Do you want this loop to continue? (y/n) "&lt;br&gt;
  answer = gets.chomp&lt;br&gt;
end&lt;/p&gt;

</description>
    </item>
    <item>
      <title>TIL 03/10/23</title>
      <dc:creator>jazmineubanks</dc:creator>
      <pubDate>Sun, 12 Mar 2023 17:44:09 +0000</pubDate>
      <link>https://dev.to/jazmineubanks/til-031023-374g</link>
      <guid>https://dev.to/jazmineubanks/til-031023-374g</guid>
      <description>&lt;p&gt;On March 10, 2023 I got some help with parameters and Hash in Ruby.&lt;/p&gt;

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