Roland Des Chains Software Projects

Python Learning Project
A series of Python tutorials from scratch to advanced concepts.

# Simple Python Program
print("Hello, World!")
Web App Development
Built a simple web app using HTML, CSS, and JavaScript.

document.getElementById("hello").innerHTML = "Welcome!";
Machine Learning Project
Implemented a basic machine learning model using Scikit-Learn.

from sklearn.linear_model import LinearRegression
reg = LinearRegression()
reg.fit([[1], [2]], [3, 5])
print(reg.predict([[4]]))
Game Development
Created a simple 2D game using Pygame.

import pygame
pygame.init()
screen = pygame.display.set_mode((400, 300))
while True:
    for event in pygame.event.get():
        if event.type == pygame.QUIT:
            break
    screen.fill((0, 0, 255))
    pygame.display.flip()
Data Visualization
Made a visualization of stock prices over time using Matplotlib.

import matplotlib.pyplot as plt
plt.plot([1, 2, 3], [1, 4, 9])
plt.show()

Created by Roland Des Chains | All rights reserved