<?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: Brandon(Zoobob5)</title>
    <description>The latest articles on DEV Community by Brandon(Zoobob5) (@zoobob5).</description>
    <link>https://dev.to/zoobob5</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%2F1629236%2F7679b989-e27c-4e93-a0a7-2cce1ee0a254.jpeg</url>
      <title>DEV Community: Brandon(Zoobob5)</title>
      <link>https://dev.to/zoobob5</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/zoobob5"/>
    <language>en</language>
    <item>
      <title>CPU SIMULATOR</title>
      <dc:creator>Brandon(Zoobob5)</dc:creator>
      <pubDate>Thu, 10 Oct 2024 00:34:41 +0000</pubDate>
      <link>https://dev.to/zoobob5/cpu-simulator-ccf</link>
      <guid>https://dev.to/zoobob5/cpu-simulator-ccf</guid>
      <description>&lt;p&gt;I was given the task of making a program or code of sorts that mimics how a CPU would work. I was really confusing to start it off with because it was a fairly short topic but I think it worked out okay and was a lot more simple than i thought. I put it in my GitHub below. &lt;/p&gt;

&lt;p&gt;examples of then outputs and there many of them:&lt;br&gt;
&lt;a href="https://media.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%2Fmntl3bvwwi7cefp9swyg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.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%2Fmntl3bvwwi7cefp9swyg.png" alt="Image description" width="227" height="161"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;ADD: $r3 = $r1 + $r2 -&amp;gt; 15&lt;br&gt;
Program Counter (PC): 3&lt;br&gt;
Registers:&lt;br&gt;
$r0: 0&lt;br&gt;
$r1: 5&lt;br&gt;
$r2: 10&lt;br&gt;
$r3: 15&lt;br&gt;
$r4: 15&lt;br&gt;
$r5: 10&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Zoobob5/CPU-Simulator" rel="noopener noreferrer"&gt;https://github.com/Zoobob5/CPU-Simulator&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>sql</category>
      <category>github</category>
      <category>git</category>
    </item>
    <item>
      <title>Little Movie Recommending Code</title>
      <dc:creator>Brandon(Zoobob5)</dc:creator>
      <pubDate>Mon, 19 Aug 2024 01:10:59 +0000</pubDate>
      <link>https://dev.to/zoobob5/little-movie-recommending-code-15af</link>
      <guid>https://dev.to/zoobob5/little-movie-recommending-code-15af</guid>
      <description>&lt;p&gt;This new project is about data structures and how to go through them. Recently just learn about "BFS" and "DFS" so  made a project using both. It was look for titles of movies that would relate to each other in some way. Below I put down a screen shot of what the terminal would look like in a way and the link to the project on git hub. Let me know what yalls would think.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Zoobob5/Movie-chart" rel="noopener noreferrer"&gt;https://github.com/Zoobob5/Movie-chart&lt;/a&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%2Fetnkyj01hhvzzyl64q90.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%2Fetnkyj01hhvzzyl64q90.png" alt="Image description" width="713" height="282"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>programming</category>
      <category>python</category>
      <category>datastructures</category>
    </item>
    <item>
      <title>Made a simple Tic-Tac-Toe game</title>
      <dc:creator>Brandon(Zoobob5)</dc:creator>
      <pubDate>Sat, 15 Jun 2024 05:47:47 +0000</pubDate>
      <link>https://dev.to/zoobob5/made-a-simple-tic-tac-toe-game-4of0</link>
      <guid>https://dev.to/zoobob5/made-a-simple-tic-tac-toe-game-4of0</guid>
      <description>&lt;p&gt;This was one of my academy's projects. It was to pick a topic out of a list and I picked TTT. I got a little side tracked in making is so it took me a little bit longer to make it but if i stayed on track it could've taken me a day. I just did a simple grid layout using tk and took user inputs to assign a simple player one and player two interaction. it is a 3 x 3 clickable grid. In short, this project showed me a nice proper semi productive way to use all of the things i learn into one game.&lt;br&gt;
Here is the link to the game:&lt;br&gt;
&lt;a href="https://github.com/Zoobob5/Tic-Tac/tree/2c39a402717881d8b41ef096db3113c4c3814cb5"&gt;https://github.com/Zoobob5/Tic-Tac/tree/2c39a402717881d8b41ef096db3113c4c3814cb5&lt;/a&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%2F5uf80qasnxsrte087imo.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%2F5uf80qasnxsrte087imo.png" alt="Image description" width="225" height="48"&gt;&lt;/a&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%2Fdxbic0vlzzyi7vumplea.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%2Fdxbic0vlzzyi7vumplea.png" alt="Image description" width="338" height="362"&gt;&lt;/a&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%2Fx9zi3ngmwcxp64i6b0lb.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%2Fx9zi3ngmwcxp64i6b0lb.png" alt="Image description" width="398" height="351"&gt;&lt;/a&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%2Fkz57jdwiijoc6f3zpy2u.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%2Fkz57jdwiijoc6f3zpy2u.png" alt="Image description" width="614" height="396"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>vscode</category>
      <category>github</category>
    </item>
  </channel>
</rss>
