<?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>Forem: Nelson_Malbone</title>
    <description>The latest articles on Forem by Nelson_Malbone (@nelsonhmalbone).</description>
    <link>https://forem.com/nelsonhmalbone</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%2F1353318%2Fec5ef692-7abb-45f3-85df-3c46cd872ed9.jpeg</url>
      <title>Forem: Nelson_Malbone</title>
      <link>https://forem.com/nelsonhmalbone</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/nelsonhmalbone"/>
    <language>en</language>
    <item>
      <title>created my first project</title>
      <dc:creator>Nelson_Malbone</dc:creator>
      <pubDate>Tue, 08 Oct 2024 22:48:22 +0000</pubDate>
      <link>https://forem.com/nelsonhmalbone/created-my-first-project-25hh</link>
      <guid>https://forem.com/nelsonhmalbone/created-my-first-project-25hh</guid>
      <description>&lt;p&gt;Text based calculator project with is from the daily python projects that audit sulce (udemy instructor) puts out daily. &lt;/p&gt;

&lt;p&gt;so i saw this and had a idea of how to do this with using the match case method and having the user have input of enter 2 numbers (seprate inputs) and a input for the operators.&lt;/p&gt;

&lt;p&gt;so this morning i stop at the coffee shop to get some monster and coffee because we all need that coffee for early mornings start. i had a fire department function at 0900 hours this morning so i had taken my laptop because i went early before i had to leave for that. so i got to the station took my coffee and book bag in then sat down and work on that project. &lt;/p&gt;

&lt;p&gt;while i was at the fucntion my phone went off for some emails so i saw he sent out another email to have the user create another calculator but have the Power (exponentiation) so i had to google that because i wasnt sure how to do that come to the realization that its just ** or pow() so i just added another case statement to take that input in it worked with out trouble.&lt;/p&gt;

&lt;p&gt;feel good about myself in creating this it just shows that i am starting to pick up on this stuff little by little.  &lt;/p&gt;

</description>
      <category>python</category>
      <category>basic</category>
    </item>
    <item>
      <title>Day 2 tracking</title>
      <dc:creator>Nelson_Malbone</dc:creator>
      <pubDate>Thu, 03 Oct 2024 22:40:11 +0000</pubDate>
      <link>https://forem.com/nelsonhmalbone/day-2-tracking-2p61</link>
      <guid>https://forem.com/nelsonhmalbone/day-2-tracking-2p61</guid>
      <description>&lt;p&gt;So this is day two coded from 5 pm to 630 with a 10 min break &lt;/p&gt;

&lt;p&gt;Goal to start and get a couple of pages of chapter 5 of automate the boring stuff, dealt with Dictionaries. built a few projects nd my favorite project was the tik tak toe basic command line user friendly program. i do have some ideas to build on to this project but thats for a later date. &lt;/p&gt;

&lt;p&gt;having the ability to have the program from user a and user b was cool. &lt;/p&gt;

&lt;p&gt;but i do have a slight problem in thats for sitting i can only sit for a few then i start to get crampy and need to stand. i did unplug my laptop from the desk and went over to the bed and sat there in work on this. &lt;/p&gt;

&lt;p&gt;also before this i did sign up for thie website &lt;a href="https://roadmap.sh/python" rel="noopener noreferrer"&gt;https://roadmap.sh/python&lt;/a&gt;. still trying to figure this out so any helpful hints would be great. &lt;/p&gt;

</description>
      <category>python</category>
      <category>beginners</category>
    </item>
    <item>
      <title>post #1 of struggling</title>
      <dc:creator>Nelson_Malbone</dc:creator>
      <pubDate>Wed, 02 Oct 2024 22:38:40 +0000</pubDate>
      <link>https://forem.com/nelsonhmalbone/post-1-of-struggling-424o</link>
      <guid>https://forem.com/nelsonhmalbone/post-1-of-struggling-424o</guid>
      <description>&lt;p&gt;This post is about my struggles with coding and learning so far&lt;/p&gt;

&lt;p&gt;A. Im only able to remain focused for maybe an hour two hours max. &lt;br&gt;
b. I get distracted real easily&lt;br&gt;
c. I cant sit for long or I start to get irritated and rested leg problems.&lt;/p&gt;

&lt;p&gt;Solutions that I have thought about to help solve issues &lt;/p&gt;

&lt;p&gt;A. I need to start using my pomodoro app more often then i do&lt;br&gt;
B. I start putting my phone on vibrate, and only use one monitor if I have another screen ill end up getting distracted with searching on the web.&lt;br&gt;
C. Looking into getting a sit stand desk but also looking into getting a husky work bench. &lt;br&gt;
D. Having water at my desk at all times beside sugar and caffeine projects. &lt;/p&gt;

&lt;p&gt;But for todays task was from the automate the boring stuff book take the grid&lt;/p&gt;

&lt;p&gt;grid = [['.', '.', '.', '.', '.', '.'],&lt;br&gt;
        ['.', '0', 'O', '.', '.', '.'],&lt;br&gt;
        ['O', 'O', 'O', 'O', '.', '.'],&lt;br&gt;
        ['O', 'O', '0', 'O', 'O', '.'],&lt;br&gt;
        ['.', 'O', 'O', 'O', 'O', 'O'],&lt;br&gt;
        ['O', 'O', 'O', 'O', 'O', '.'],&lt;br&gt;
        ['O', 'O', 'O', 'O', '.', '.'],&lt;br&gt;
        ['.', 'O', 'O', '.', '.', '.'],&lt;br&gt;
        ['.', '.', '.', '.', '.', '.']]&lt;/p&gt;

&lt;p&gt;and print it out to look like this &lt;br&gt;
..OO.OO..&lt;br&gt;
.0OOOOOO.&lt;br&gt;
.OO0OOOO.&lt;br&gt;
..OOOOO..&lt;br&gt;
...OOO...&lt;br&gt;
....O....&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F28907ntu2i1mxzxe1rh0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F28907ntu2i1mxzxe1rh0.png" alt="Image description" width="429" height="469"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;is my thought but i went the hard way and just really forgot to put the [1] at the first "for" statement (i believe)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzl2cl235lkrg3heubwns.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzl2cl235lkrg3heubwns.png" alt="Image description" width="746" height="492"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;this is the solution that I researched using stack overflow. &lt;br&gt;
Before I go looking for Solutions I spend atleast 30 mins trying to solve the problem myself before I go looking for the issues &lt;/p&gt;

</description>
      <category>productivity</category>
      <category>python</category>
    </item>
    <item>
      <title>Coming back after a break</title>
      <dc:creator>Nelson_Malbone</dc:creator>
      <pubDate>Wed, 02 Oct 2024 11:03:35 +0000</pubDate>
      <link>https://forem.com/nelsonhmalbone/coming-back-after-a-break-42a3</link>
      <guid>https://forem.com/nelsonhmalbone/coming-back-after-a-break-42a3</guid>
      <description>&lt;p&gt;So i actually forgot about this website for a hot minute. In now I have a goal of keeping up with this site in post about my learning experiences. I do have a full time job and I spend roughly an hour and a half to two hours a day working on code. &lt;/p&gt;

&lt;p&gt;I’m currently working on the book automate the boring stuff book. In working thur the problems and quizzes it has to go with it. &lt;/p&gt;

&lt;p&gt;I have also realized that myself I tend to overthink the problem and make it more difficult. I do spend 30 mins or longer trying to figure it out on my own before I got to stackoverflow or google the solution. &lt;/p&gt;

&lt;p&gt;So if anyone has tricks and tips to over come the overthinking. &lt;br&gt;
please comment below or dm me. &lt;/p&gt;

</description>
      <category>productivity</category>
      <category>python</category>
    </item>
    <item>
      <title>Just trying to be better</title>
      <dc:creator>Nelson_Malbone</dc:creator>
      <pubDate>Thu, 14 Mar 2024 23:38:46 +0000</pubDate>
      <link>https://forem.com/nelsonhmalbone/just-trying-to-be-better-441l</link>
      <guid>https://forem.com/nelsonhmalbone/just-trying-to-be-better-441l</guid>
      <description>&lt;p&gt;I’m learning Python and then would like to learn swift(apple user) &lt;/p&gt;

&lt;p&gt;I’m currently on section 12 of a Udemy course and I have learned more from this course then I have watching YouTube. &lt;/p&gt;

&lt;p&gt;I’m going to do the automation course after this course also &lt;/p&gt;

&lt;p&gt;I have a few projects in my mind that I would love to start &lt;/p&gt;

</description>
      <category>python</category>
      <category>udemy</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
