<?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: Ramenchu</title>
    <description>The latest articles on Forem by Ramenchu (@ramenchu).</description>
    <link>https://forem.com/ramenchu</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%2F2892553%2F428b3263-4cf6-4896-8879-49711211fe5d.png</url>
      <title>Forem: Ramenchu</title>
      <link>https://forem.com/ramenchu</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/ramenchu"/>
    <language>en</language>
    <item>
      <title>I made a program that uses a data tree structure</title>
      <dc:creator>Ramenchu</dc:creator>
      <pubDate>Mon, 24 Mar 2025 05:30:15 +0000</pubDate>
      <link>https://forem.com/ramenchu/i-made-a-program-that-uses-a-data-tree-structure-439d</link>
      <guid>https://forem.com/ramenchu/i-made-a-program-that-uses-a-data-tree-structure-439d</guid>
      <description>&lt;p&gt;A program that uses a data tree structure to create a "Choose your own adventure" game.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Ramenchu/Wilderness_Escape.git" rel="noopener noreferrer"&gt;https://github.com/Ramenchu/Wilderness_Escape.git&lt;/a&gt;&lt;/p&gt;

</description>
      <category>programming</category>
      <category>gamechallenge</category>
      <category>softwaredevelopment</category>
      <category>algorithms</category>
    </item>
    <item>
      <title>I made a program that uses dynamic programming</title>
      <dc:creator>Ramenchu</dc:creator>
      <pubDate>Mon, 24 Mar 2025 05:15:10 +0000</pubDate>
      <link>https://forem.com/ramenchu/i-made-a-program-that-uses-dynamic-programming-3nok</link>
      <guid>https://forem.com/ramenchu/i-made-a-program-that-uses-dynamic-programming-3nok</guid>
      <description>&lt;p&gt;A program that uses dynamic programming to find the longest common subsequence between strings.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Ramenchu/Longest_Common_Subsequence.git" rel="noopener noreferrer"&gt;https://github.com/Ramenchu/Longest_Common_Subsequence.git&lt;/a&gt;&lt;/p&gt;

</description>
      <category>programming</category>
      <category>algorithms</category>
      <category>opensource</category>
    </item>
    <item>
      <title>I made a program that uses bubble sort and quick sort algorithms</title>
      <dc:creator>Ramenchu</dc:creator>
      <pubDate>Mon, 24 Mar 2025 04:55:02 +0000</pubDate>
      <link>https://forem.com/ramenchu/i-made-a-program-that-uses-bubble-sort-and-quick-sort-algorithms-2h5e</link>
      <guid>https://forem.com/ramenchu/i-made-a-program-that-uses-bubble-sort-and-quick-sort-algorithms-2h5e</guid>
      <description>&lt;p&gt;Program that uses the bubble sort and quick sort algorithms to sort book titles and authors in csv files.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Ramenchu/Algorithms_To_Sort_Books.git" rel="noopener noreferrer"&gt;https://github.com/Ramenchu/Algorithms_To_Sort_Books.git&lt;/a&gt;&lt;/p&gt;

</description>
      <category>algorithms</category>
      <category>programming</category>
      <category>showdev</category>
    </item>
    <item>
      <title>I made hash maps of Pokemon and Digimon names in Japanese.</title>
      <dc:creator>Ramenchu</dc:creator>
      <pubDate>Mon, 03 Mar 2025 06:15:53 +0000</pubDate>
      <link>https://forem.com/ramenchu/i-made-hash-maps-of-pokemon-and-digimon-names-in-japanese-3o66</link>
      <guid>https://forem.com/ramenchu/i-made-hash-maps-of-pokemon-and-digimon-names-in-japanese-3o66</guid>
      <description>&lt;p&gt;Today I coded two hash maps of what Pokemon and Digimon names are in Japanese.&lt;/p&gt;

&lt;p&gt;Check it out!&lt;br&gt;
&lt;a href="https://github.com/Ramenchu/PokemonandDigimon_JPNames.git" rel="noopener noreferrer"&gt;https://github.com/Ramenchu/PokemonandDigimon_JPNames.git&lt;/a&gt;&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%2Fsfz1gs1pz0vgdca02tqh.jpg" 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%2Fsfz1gs1pz0vgdca02tqh.jpg" alt="Image description" width="800" height="378"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Towers of Hanoi</title>
      <dc:creator>Ramenchu</dc:creator>
      <pubDate>Thu, 27 Feb 2025 05:25:16 +0000</pubDate>
      <link>https://forem.com/ramenchu/towers-of-hanoi-1eea</link>
      <guid>https://forem.com/ramenchu/towers-of-hanoi-1eea</guid>
      <description>&lt;p&gt;Today I coded the game Towers of Hanoi in Python.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Ramenchu/Towers_of_Hanoi.git" rel="noopener noreferrer"&gt;https://github.com/Ramenchu/Towers_of_Hanoi.git&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I think it is pretty neat, if I do say so myself.&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%2F2w1xzf19vd96el6kizjf.gif" 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%2F2w1xzf19vd96el6kizjf.gif" alt="Image description" width="335" height="225"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
      <category>github</category>
      <category>gamechallenge</category>
    </item>
    <item>
      <title>I made a mortgage calculator.</title>
      <dc:creator>Ramenchu</dc:creator>
      <pubDate>Fri, 21 Feb 2025 14:05:55 +0000</pubDate>
      <link>https://forem.com/ramenchu/i-made-a-mortgage-calculator-5gnj</link>
      <guid>https://forem.com/ramenchu/i-made-a-mortgage-calculator-5gnj</guid>
      <description>&lt;p&gt;Today I wrote my first Python program. It is a mortgage calculator. It calculates mortgages.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://github.com/Ramenchu/Mortgage-Calculator.git" rel="noopener noreferrer"&gt;https://github.com/Ramenchu/Mortgage-Calculator.git&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I hope everyone is having a great day.&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%2Fvahtbm5h92wp5qec272j.gif" 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%2Fvahtbm5h92wp5qec272j.gif" alt="Image description" width="327" height="276"&gt;&lt;/a&gt;&lt;/p&gt;

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