<?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: Alexuias Nel</title>
    <description>The latest articles on Forem by Alexuias Nel (@an0maly).</description>
    <link>https://forem.com/an0maly</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%2F3548306%2Fd274aa5d-e839-4613-9515-0f374d05c0d0.png</url>
      <title>Forem: Alexuias Nel</title>
      <link>https://forem.com/an0maly</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/an0maly"/>
    <language>en</language>
    <item>
      <title>My first Recommendation System</title>
      <dc:creator>Alexuias Nel</dc:creator>
      <pubDate>Tue, 24 Mar 2026 06:48:26 +0000</pubDate>
      <link>https://forem.com/an0maly/my-first-recommendation-system-5d1k</link>
      <guid>https://forem.com/an0maly/my-first-recommendation-system-5d1k</guid>
      <description>&lt;p&gt;💡 Introduction: Why I Built This Program&lt;/p&gt;

&lt;p&gt;In a world full of endless movie choices, deciding what to watch can feel overwhelming. I created MovieFlix, a Python-based movie recommendation system, to simplify that decision. The goal was to build a simple yet effective program that allows users to input their preferred genre and instantly receive top-rated movie suggestions. This project helped me explore data processing, algorithms, and user interaction in Python while solving a real-world problem.&lt;/p&gt;

&lt;p&gt;🧠 How the Program Works (Code Overview)&lt;/p&gt;

&lt;p&gt;The MovieFlix program is built using Python and leverages a dataset of movies to generate recommendations. The main script handles user interaction: it loads the dataset, cleans the genre data, and prompts the user to choose a genre.&lt;/p&gt;

&lt;p&gt;Behind the scenes, the logic is powered by functions in . The program:&lt;/p&gt;

&lt;p&gt;Loads movie data using pandas&lt;br&gt;
Converts genre data from strings into usable lists&lt;br&gt;
Filters movies based on the user’s selected genre&lt;br&gt;
Sorts the results by rating to recommend the best options&lt;/p&gt;

&lt;p&gt;Additionally, a custom bubble sort algorithm is included in , demonstrating an understanding of sorting techniques, even though pandas' built-in sorting is primarily used.&lt;/p&gt;

&lt;p&gt;The final output is a clean list of the top 10 highest-rated movies in the chosen genre, displayed directly in the terminal.&lt;/p&gt;

&lt;p&gt;🔗 GitHub Repository&lt;/p&gt;

&lt;p&gt;You can view the full project and code here:&lt;br&gt;
👉 &lt;a href="https://github.com/Alexuias/My-First-Recomendation-system.git" rel="noopener noreferrer"&gt;https://github.com/Alexuias/My-First-Recomendation-system.git&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;✅ Conclusion&lt;/p&gt;

&lt;p&gt;MovieFlix is a great example of how programming can turn data into meaningful user experiences. Through this project, I learned how to manipulate datasets, implement filtering and sorting algorithms, and design a user-friendly command-line application. While simple, it lays the foundation for more advanced systems like AI-powered recommendations or web-based apps.&lt;/p&gt;

&lt;p&gt;This project shows that even with basic Python skills, you can build something practical, interactive, and genuinely useful.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>datascience</category>
      <category>programming</category>
      <category>python</category>
    </item>
    <item>
      <title>My First terminal program.</title>
      <dc:creator>Alexuias Nel</dc:creator>
      <pubDate>Mon, 06 Oct 2025 11:37:55 +0000</pubDate>
      <link>https://forem.com/an0maly/my-first-terminal-program-20j7</link>
      <guid>https://forem.com/an0maly/my-first-terminal-program-20j7</guid>
      <description>&lt;h2&gt;
  
  
  I am an0maly
&lt;/h2&gt;

&lt;p&gt;This my first terminal program. This was a challenge to see how much I've&lt;br&gt;
 learned in the last 3 months. Why snake you may ask cause we all remember the first time playing snake the game it self is filled with excitement so i thought why not create game that is close to you and with that conclusion i create my first basic terminal game "snake". &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%2Fraw.githubusercontent.com%2FAlexuias%2Fsnake.py%2Frefs%2Fheads%2Fmaster%2Fcode.png%3Ftoken%3DGHSAT0AAAAAADMNDE46BB73PHAHWKCPP2ZY2HDVBYA" 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%2Fraw.githubusercontent.com%2FAlexuias%2Fsnake.py%2Frefs%2Fheads%2Fmaster%2Fcode.png%3Ftoken%3DGHSAT0AAAAAADMNDE46BB73PHAHWKCPP2ZY2HDVBYA" alt="Code for snake" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The game Snake typically involves controlling a snake to eat food while avoiding collisions with itself and the walls. Here are some common components and logic that might be part of your code:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Game Loop&lt;/strong&gt;: Continuously updates the game state, checks for user input, and renders the game.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Snake Representation&lt;/strong&gt;: Often a list of coordinates representing the snake’s body segments.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Movement&lt;/strong&gt;: Updates the snake’s position based on user input (e.g., arrow keys).&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Food&lt;/strong&gt;: Randomly placed on the grid, and when eaten, the snake grows.&lt;/li&gt;
&lt;li&gt;Collision Detection: Checks if the snake collides with itself or the boundaries.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Score&lt;/strong&gt;: Tracks the number of food items eaten.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Graphics&lt;/strong&gt;: Uses libraries like Pygame for rendering the snake, food, and game area.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://github.com/Alexuias/snake.py.git" rel="noopener noreferrer"&gt;https://github.com/Alexuias/snake.py.git&lt;/a&gt;&lt;/p&gt;

</description>
      <category>gamedev</category>
      <category>programming</category>
      <category>python</category>
      <category>vscode</category>
    </item>
  </channel>
</rss>
