<?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: Reid Aumann</title>
    <description>The latest articles on DEV Community by Reid Aumann (@reidaumann).</description>
    <link>https://dev.to/reidaumann</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%2F1196268%2F0d5e02ce-7164-4fa8-b5ed-00f81b8fc3bc.jpeg</url>
      <title>DEV Community: Reid Aumann</title>
      <link>https://dev.to/reidaumann</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/reidaumann"/>
    <language>en</language>
    <item>
      <title>Building a Rails App from Scratch</title>
      <dc:creator>Reid Aumann</dc:creator>
      <pubDate>Tue, 23 Apr 2024 14:28:58 +0000</pubDate>
      <link>https://dev.to/reidaumann/building-a-rails-app-from-scratch-3bc2</link>
      <guid>https://dev.to/reidaumann/building-a-rails-app-from-scratch-3bc2</guid>
      <description>&lt;p&gt;I'm building my first rails app from scratch right now and I've been learning a lot. I'm designing it entirely in custom CSS (I know, it sounds a little crazy) and I spoke with my mentor who is a UI/UX designer about improvements in styling. &lt;/p&gt;

&lt;p&gt;I also am learning a lot about my different routes and implementing authorizations so users can only access the pages they're supposed to. I am using the Pundit gem which I have a better understanding of now. &lt;/p&gt;

&lt;p&gt;Setting up my entity relationship diagram and my associations was the step that made me the most nervous. I did it correctly for my first version, but now that I wish to add columns to my database I'm a little anxious about breaking it. &lt;/p&gt;

&lt;p&gt;I feel that the most I've learned is by far in user research and feedback. As I'm developing I've been asking users about different search filters and features they might want and I'm currently working on adding those in.&lt;/p&gt;

&lt;p&gt;If you want to see my project so far you can visit it at right2restrooms.com or my &lt;a href="https://github.com/reidaumann/right2restrooms"&gt;Github Repository&lt;/a&gt; and feel free to send me feedback! &lt;/p&gt;

</description>
    </item>
    <item>
      <title>Learning React</title>
      <dc:creator>Reid Aumann</dc:creator>
      <pubDate>Tue, 20 Feb 2024 20:52:58 +0000</pubDate>
      <link>https://dev.to/reidaumann/learning-react-and-jsx-l6h</link>
      <guid>https://dev.to/reidaumann/learning-react-and-jsx-l6h</guid>
      <description>&lt;p&gt;I've been learning about React and other JSX basics for the last few days, and I even got to create a simple tic-tac-toe game that allows you to go back to whichever move you like. &lt;/p&gt;

&lt;p&gt;Here's what I've learned so far: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;use className where you would use class in HTML&lt;/li&gt;
&lt;li&gt;use JS features like for loops and array .map() functions to render lists that have several components&lt;/li&gt;
&lt;li&gt;to have two child components communicate with each other, declare the shared state in their parent component&lt;/li&gt;
&lt;li&gt;you can only have one export default function per file&lt;/li&gt;
&lt;/ul&gt;

</description>
    </item>
    <item>
      <title>TIL 2/15</title>
      <dc:creator>Reid Aumann</dc:creator>
      <pubDate>Thu, 15 Feb 2024 17:35:40 +0000</pubDate>
      <link>https://dev.to/reidaumann/til-215-4fn1</link>
      <guid>https://dev.to/reidaumann/til-215-4fn1</guid>
      <description>&lt;p&gt;Today I'm learning more about ui/ux design and it's principles. I've always enjoyed the creative or artsy side of things, so I'm intrigued by ui/ux because it combines both technical and creative skills. I've been reading a lot from Erik Kennedy and other people he mentions as well as looking at others portfolio projects on dribbble. &lt;/p&gt;

&lt;p&gt;I'm starting with designing in one color (as suggested by Kennedy) and learning about how to make wireframes in Figma. Once I've finished I'm thinking of doing a unsolicited redesign of Ravelry, creating wireframes for an app just to put into practice what I'm learning about design elements. &lt;/p&gt;

&lt;p&gt;The next step would be to include this design work in an actual app, but I hope to get to that soon! &lt;/p&gt;

</description>
    </item>
    <item>
      <title>TIL 12/5</title>
      <dc:creator>Reid Aumann</dc:creator>
      <pubDate>Wed, 06 Dec 2023 01:41:31 +0000</pubDate>
      <link>https://dev.to/reidaumann/til-125-42c9</link>
      <guid>https://dev.to/reidaumann/til-125-42c9</guid>
      <description>&lt;p&gt;Today I'm preparing for my interview tomorrow by working on the example program and watching the videos in the personal interview section. &lt;/p&gt;

&lt;p&gt;While working on birthday_cake.rb I think I learned a lot about debugging and got to put my knowledge about classes to the test! I stepped through each error in the original file and was able to fix them all by figuring out what to add to or change in the code to make it correct. &lt;/p&gt;

&lt;p&gt;I am working on identifying when to ask questions versus working the problem out on my own, but I am confident that I will ask those questions when I need to. &lt;/p&gt;

</description>
    </item>
    <item>
      <title>TIL 11/14</title>
      <dc:creator>Reid Aumann</dc:creator>
      <pubDate>Wed, 15 Nov 2023 02:57:29 +0000</pubDate>
      <link>https://dev.to/reidaumann/til-1114-1pfh</link>
      <guid>https://dev.to/reidaumann/til-1114-1pfh</guid>
      <description>&lt;p&gt;Today I worked on the Arrays and If Statements Ruby modules! I have worked with arrays in Python and C++ so that wasn't new, but some of the If Statements information was new to me. The "truthy" and "falsy" information was especially interesting to me, as I assumed 0 would be "falsy". I know that If statements are going to be important in the future, so I'm excited to learn even more about them!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>TIL 11/12</title>
      <dc:creator>Reid Aumann</dc:creator>
      <pubDate>Sun, 12 Nov 2023 23:55:14 +0000</pubDate>
      <link>https://dev.to/reidaumann/til-1112-369c</link>
      <guid>https://dev.to/reidaumann/til-1112-369c</guid>
      <description>&lt;p&gt;Today I created my links page with HTML and CSS and worked on Ruby Fundamentals! I reinforced what I know about flex boxes and had fun selecting my favorite links for the first assignment. Ruby is new to me, but I feel like it's been easy to learn so far! I learned about strings, floats, integers, and dates. The dates were new to me, but the others I've learned in Python and C++ before. The codeacademy lesson was really interesting, and I am definitely curious to learn more about the loops and if/else statements.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>TIL 11/6</title>
      <dc:creator>Reid Aumann</dc:creator>
      <pubDate>Mon, 06 Nov 2023 21:21:35 +0000</pubDate>
      <link>https://dev.to/reidaumann/til-116-jpg</link>
      <guid>https://dev.to/reidaumann/til-116-jpg</guid>
      <description>&lt;p&gt;Today I was working on HTML and CSS on Codeacademy. I have been learning HTML and CSS since August in a course through City Colleges of Chicago, but I still learned a lot today. I knew most of the information about HTML and CSS basics, but the course helped me to understand flex boxes and grid displays better. I will definitely be using what I learned in my assignments and career going forward!&lt;/p&gt;

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