<?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: Jaime Pereira</title>
    <description>The latest articles on Forem by Jaime Pereira (@jaimegpereira).</description>
    <link>https://forem.com/jaimegpereira</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%2F1311619%2Fb09a3c4a-6744-429b-9d66-6a132005adb8.jpg</url>
      <title>Forem: Jaime Pereira</title>
      <link>https://forem.com/jaimegpereira</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/jaimegpereira"/>
    <language>en</language>
    <item>
      <title>Python Terminal Tic-Tac-Toe Game</title>
      <dc:creator>Jaime Pereira</dc:creator>
      <pubDate>Sun, 10 Mar 2024 00:57:10 +0000</pubDate>
      <link>https://forem.com/jaimegpereira/python-terminal-tic-tac-toe-game-3n63</link>
      <guid>https://forem.com/jaimegpereira/python-terminal-tic-tac-toe-game-3n63</guid>
      <description>&lt;p&gt;Hi! I want to share with you my portfolio project which I completed as part of my Computer Science career path on Codecademy. The project challenged me to post my code on GitHub and write a blog post to share my project.&lt;/p&gt;

&lt;p&gt;The goal of this project was to create a terminal program using the coding tools I have learned so far (Python based). I chose to make a two-player Tic-Tac-Toe game.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/JmeGP/Terminal-Game---Codecademy-portfolio"&gt;https://github.com/JmeGP/Terminal-Game---Codecademy-portfolio&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I had a lot of fun doing this project!&lt;br&gt;
I would apreciate sugestions and comments that would help to improve this project!&lt;/p&gt;

</description>
      <category>python</category>
      <category>github</category>
    </item>
    <item>
      <title>Software Development Concepts project! - Codecademy Project</title>
      <dc:creator>Jaime Pereira</dc:creator>
      <pubDate>Wed, 28 Feb 2024 16:27:20 +0000</pubDate>
      <link>https://forem.com/jaimegpereira/software-development-concepts-project-codecademy-project-52lh</link>
      <guid>https://forem.com/jaimegpereira/software-development-concepts-project-codecademy-project-52lh</guid>
      <description>&lt;p&gt;Hi! I started studying IT to improve my knowledge and to become a professional in this field. I started with the IT introduction course on the "Codecademy" website, where I was asked to create a software concept. Therefore, this article is dedicated to that project!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Plan and write the algorithm&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;1 - Create a string variable "text" and input the value of the text that we plan to search through&lt;br&gt;
2 - Create a string variable named "pattern" and input the value of the pattern thet we are looking for in text&lt;br&gt;
3 - Create a "match_count" variable and set it to 0&lt;br&gt;
4 - Decision: Have we finished searching the text value?&lt;br&gt;
  *If no, continue to step 5&lt;br&gt;
    *If yes, continue to step 7&lt;br&gt;
5 - Iterate to the next word in "text" variable&lt;br&gt;
6 - Compare value of "text" to the value of "pattern". Decision: Are they equal?&lt;br&gt;
     *If yes, go to 7&lt;br&gt;
     *If no, go back to step 5&lt;br&gt;
7 - If "match_count" is equals to the lenght of the patern: pattern found! otherwise: pattern not found!&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Draw a Flowchart&lt;/strong&gt;&lt;/p&gt;

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

&lt;p&gt;&lt;strong&gt;Test the Chart&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I will conduct an analysis to make sure it works as expected.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Produce Pseudocode&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;define text&lt;br&gt;
define pattern&lt;br&gt;
create a match_count variable and set it to 0&lt;br&gt;
if the entire text hasn't been searched:&lt;br&gt;
iterate to the next character of the text&lt;br&gt;
if the entire pattern hasn't been searched:&lt;br&gt;
if this character from the pattern is equal to the character from text:&lt;br&gt;
increment the match_count variable&lt;br&gt;
if match_count is equal to the length of the pattern:&lt;br&gt;
pattern found!&lt;br&gt;
otherwise:&lt;br&gt;
pattern not found!&lt;/p&gt;

&lt;p&gt;With the pseudocode done, I conclude this article!&lt;br&gt;
Thank you for giving me some of your time and for reading my article to the end!&lt;br&gt;
This is my first project, so I found it to be a bit chalanging but at the same time very interesting!&lt;br&gt;
I would apreciate sugestions and comments that would help to improve this project! &lt;/p&gt;

</description>
      <category>beginners</category>
      <category>softwaredevelopment</category>
    </item>
  </channel>
</rss>
