<?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: Cent</title>
    <description>The latest articles on DEV Community by Cent (@centanomics).</description>
    <link>https://dev.to/centanomics</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%2F277812%2F3c3a01ec-9025-4602-bb07-b2023710cfc0.png</url>
      <title>DEV Community: Cent</title>
      <link>https://dev.to/centanomics</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/centanomics"/>
    <language>en</language>
    <item>
      <title>Cent's Two Cents - Project</title>
      <dc:creator>Cent</dc:creator>
      <pubDate>Thu, 06 Jun 2024 12:21:13 +0000</pubDate>
      <link>https://dev.to/centanomics/cents-two-cents-project-1dck</link>
      <guid>https://dev.to/centanomics/cents-two-cents-project-1dck</guid>
      <description>&lt;p&gt;Hello everyone!&lt;/p&gt;

&lt;p&gt;Cent here with the next installment.&lt;/p&gt;

&lt;p&gt;Today I did my first project with the Odin Project! It was a relatively simple once, just focusing on the HTML lessons I've gone over in the previous days. I would've added more style to it, but I tend to think its best to just follow the project requirements. It's a project for HTML lessons not CSS lessons, so I don't want to be super focused on getting a design for this simple project down.&lt;/p&gt;

&lt;p&gt;This project was just a simple recipe site, with specific pages for each recipe made. I'll share the code for the index page, which is just a list of recipes, and one of the recipe pages.&lt;/p&gt;

&lt;p&gt;The link to the project is here: &lt;a href="https://centanomics.github.io/odin-recipies/"&gt;https://centanomics.github.io/odin-recipies/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;index.html&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;h1&amp;gt;&lt;/span&gt;Odin Recipes&lt;span class="nt"&gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;ul&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;a&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"./recipes/rice-bowl.html"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Rice Bowl&lt;span class="nt"&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;a&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"./recipes/mac-n-cheese.html"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Mac and Cheese&lt;span class="nt"&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;
    &lt;span class="nt"&gt;&amp;lt;a&lt;/span&gt; &lt;span class="na"&gt;href=&lt;/span&gt;&lt;span class="s"&gt;"./recipes/pbnj.html"&lt;/span&gt;&lt;span class="nt"&gt;&amp;gt;&lt;/span&gt;Peanut Butter and Jelly Sandwich&lt;span class="nt"&gt;&amp;lt;/a&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/ul&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Simple enough, right? Now let's look at the rice bowl recipe page.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight html"&gt;&lt;code&gt;&lt;span class="nt"&gt;&amp;lt;h1&amp;gt;&lt;/span&gt;Cent's Rice Bowl&lt;span class="nt"&gt;&amp;lt;/h1&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;img&lt;/span&gt; &lt;span class="na"&gt;src=&lt;/span&gt;&lt;span class="s"&gt;"https://theviewfromgreatisland.com/wp-content/uploads/2020/04/korean-beef-rice-bowl-8506495-April-24-2020.jpg"&lt;/span&gt; &lt;span class="na"&gt;alt=&lt;/span&gt;&lt;span class="s"&gt;"Rice bowl with rice, green beans, ground beef, and an over easy egg"&lt;/span&gt;&lt;span class="nt"&gt;/&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;h2&amp;gt;&lt;/span&gt;Description&lt;span class="nt"&gt;&amp;lt;/h2&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;p&amp;gt;&lt;/span&gt;Cent's rice bowl is a cheap and easy meal that you can customize to your liking. It will usually contain rice, some form of meat, and some form of vegetables&lt;span class="nt"&gt;&amp;lt;/p&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;h2&amp;gt;&lt;/span&gt;Ingredients&lt;span class="nt"&gt;&amp;lt;/h2&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;ul&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;Rice&lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;Ground pork&lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;Mixed Vegetables&lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;Your favorite blend of spices&lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;Cheese (optional)&lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/ul&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;h2&amp;gt;&lt;/span&gt;Steps&lt;span class="nt"&gt;&amp;lt;/h2&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;ol&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;Put one serving of rice into a rice cooker&lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;While the rice is cooking start browing the ground pork, mixing in the spices while the ground pork is cooking&lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;Once the ground pork is close to done you can heat up the mixed vegetables in the microwave&lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;Once the rice is done, add your ground pork and mixed vegetables and mix it all together&lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&lt;/span&gt;
  &lt;span class="nt"&gt;&amp;lt;li&amp;gt;&lt;/span&gt;If you want you can add cheese as well&lt;span class="nt"&gt;&amp;lt;/li&amp;gt;&lt;/span&gt;
&lt;span class="nt"&gt;&amp;lt;/ol&amp;gt;&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Just a few lists and an image for the related food item. As I mentioned, simple, stuff I already know. However, I want to do everything again, and the practice won't hurt.&lt;/p&gt;

&lt;p&gt;Today was a bit of a shorter day as finishing the project was a good stopping point for me. Tomorrow we'll start on the CSS lessons!&lt;/p&gt;

&lt;p&gt;Until tomorrow!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Cent's Two Cents - HTML</title>
      <dc:creator>Cent</dc:creator>
      <pubDate>Tue, 04 Jun 2024 13:24:13 +0000</pubDate>
      <link>https://dev.to/centanomics/cents-two-cents-html-26ak</link>
      <guid>https://dev.to/centanomics/cents-two-cents-html-26ak</guid>
      <description>&lt;p&gt;Hi all!&lt;/p&gt;

&lt;p&gt;Cent here with my third day of updates!&lt;/p&gt;

&lt;p&gt;Continuing with the Odin Project, we've starting diving into HTML. It's been nice going over this stuff again. It makes me think about how we know stuff, but might not actively think about if that makes sense. It's hard to describe that feeling I think.&lt;/p&gt;

&lt;p&gt;Today was mainly going over the basics of html so no code to share like I hoped, however I should be doing my first project tomorrow so hopefully I can finally share something.&lt;/p&gt;

&lt;p&gt;Also I mentioned the pomodoro timer for studying before. I found a good rhythm for myself. I'll study/code for 3 25 mins sessions, then use the last one to write the blog post. For now that works perfectly for me and I'm making an effort to study during the sessions so that always feels good.&lt;/p&gt;

&lt;p&gt;I don't really have a desired length for these posts so I'll likely just go until I don't have anything else to say, so until next time!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Cent's Two Cents - Reading</title>
      <dc:creator>Cent</dc:creator>
      <pubDate>Tue, 04 Jun 2024 02:39:28 +0000</pubDate>
      <link>https://dev.to/centanomics/cents-two-cents-reading-4o43</link>
      <guid>https://dev.to/centanomics/cents-two-cents-reading-4o43</guid>
      <description>&lt;p&gt;Hi everyone,&lt;/p&gt;

&lt;p&gt;Cent here with my second day of updates!&lt;/p&gt;

&lt;p&gt;Continuing with the Odin Project, today was mostly about setting up and a few basics about the internet that I realized I never actually learned in school. Basically just how the internet works. I knew a lot of the terms but just never how they interacted with each other specifically.&lt;/p&gt;

&lt;p&gt;In any case, I have everything setup and ready to start learning. While I do know a lot of this stuff already , I want to go over the material again to strengthen my knowledge.&lt;/p&gt;

&lt;p&gt;This post is relatively short as I just did a lot of reading today, tomorrow maybe I'll share a code snippet or two as I actually get into the exercises.&lt;/p&gt;

&lt;p&gt;Until tomorrow!&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Cent's Two Cents - Start</title>
      <dc:creator>Cent</dc:creator>
      <pubDate>Sun, 02 Jun 2024 16:30:38 +0000</pubDate>
      <link>https://dev.to/centanomics/cents-two-cents-start-1mm4</link>
      <guid>https://dev.to/centanomics/cents-two-cents-start-1mm4</guid>
      <description>&lt;p&gt;Hello everyone!&lt;/p&gt;

&lt;p&gt;In an attempt to be more consistent with learning, I am going to start this blog to essentially summarize what I've done in the 60-90 minutes I take out of my day to learn.&lt;/p&gt;

&lt;p&gt;I have started &lt;a href="https://www.theodinproject.com/"&gt;The Odin Project&lt;/a&gt; so a lot of the early blogs will be relatively simple, as we are going over the basic of basics (in my opinion of course). I've decided to go through everything again in order to solidify my foundation before  I continue finishing the side projects I've started but never finished.&lt;/p&gt;

&lt;p&gt;Before I describe what I went over today, I would like to describe a few of my goals for myself:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Complete The Odin Project&lt;/li&gt;
&lt;li&gt;Finish my side projects (discord bot, ultimate bravery lor)&lt;/li&gt;
&lt;li&gt;Participate in more challenges (codepen challenges, dev.to challenges, maybe a hackathon)&lt;/li&gt;
&lt;li&gt;Update my portfolio site which i have not updated in years (my resume is included in this step)&lt;/li&gt;
&lt;li&gt;Find a job in web development (i work a a bank mainly using sql and unix. While nice, not really what i want to do as a career)&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Now onto what I learned today.&lt;/p&gt;

&lt;p&gt;I have started the foundations course for the odin project. As of now I have finished the introduction section, which includes how the course will work, how to interact with the community if you need help, and how to learn. I also just started the foundations section which will go over how the web works, and computer basics. I did go to a non standard college so I appreciate this overview from then.&lt;/p&gt;

&lt;p&gt;One interested thing I've learned from these lessons is the pomodoro technique, which is essentially a 25 min study session then 5 minute break on repeat. When I studied as a student, I usually separate it by subjects, which means I could be going for only a few minutes or hours at a time. I'm going try to use this technique tomorrow so I can see if it can help my concentration.&lt;/p&gt;

&lt;p&gt;That's all for today! Until tomorrow!&lt;/p&gt;

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