Projects
Dot.py - Personal AI Assistant
Editor.py - A basic notepad/editor
Tutorials
Build a basic HTML webpage!
DeepSeek AI Tutorial Using Python - Greetings, Let's Explore AI!/Learn to code with AI!. . .
OpenAI Turotial - Python
Tools
Simple Calendar Tool
An easy-to-use calendar creation tool! If you need to whip up a one-page printable calendar quickly, this is the perfect solution. Want something a bit more advanced? If you're looking for features like a login system, tracking events for future reference, or more customization options, email me, and we can chat about it.
Towers of Hanoi
It is a fun tool to learn about recursion and data structuring in computer science and programming. When you dive into this tool, you will find a simple recursive technique written in Python—when the tool loads. Instead of going through a long tutorial, which can be extensively detailed, I would love to share a fantastic YouTube channel that covers topics related to computer science. Enjoy exploring! Check out the Computerphile channel: https://www.youtube.com/@Computerphile
Website Mock-ups
Basic Blog Type, 
Business 1-Page, 
Construction Site, 
Simple Shopify Site, 
Custom Survey
Down-to-Earth Definitions
Recursion: A programming technique in which a function calls itself, either directly or indirectly, to tackle a problem. This approach simplifies a complex issue by breaking it down into smaller, more manageable sub-problems. It continues to do this until it arrives at a base case, which can be solved without additional recursion.
While Loop: A while loop is a key control structure in programming that enables a block of code to run repeatedly as long as a specific condition remains true. It's beneficial for tasks where the number of iterations isn't predetermined and relies on a changing condition.
If Statement: An if statement is a basic control structure in programming that enables you to run a block of code based on the truth of a particular condition. It allows you to make decisions in your code, executing different actions depending on whether the condition evaluates to true or false.
Responsive: This basically just means your webpage will be able to shrink or grow when used on a mobile device or a larger desktop screen. Responsiveness is essential if you create a website for selling items or something highly utilized on mobile devices, like search websites—Google or Bing. No matter how small the screen is, it somehow works.
Meta Tags: Very simple! It is information that is like spoken to the web browser to handle many different actions, such as supporting Unicode or characters that are sometimes considered illegal. For example, characters that are not usually allowed in website usernames. Or the “viewport” meta tag, which is used mainly to make the page look better on a mobile device. It is included in the source code above, and that specific code arrangement is prevalent on webpages. It just fits everything better, considering the screen size.
Complete List of Meta HTML Tags: https://gist.github.com/whitingx/3840905