This showcases my work about and including Ai, including Ai Assisted Code and much more!

Introduction into Artificial Intelligence

Artificial Intelligence, or AI, is basically when machines are designed to perform tasks that typically require human intelligence. Think of it as computers learning, solving problems, recognizing patterns, understanding human language, or even making decisions. It's used in everything from recommending movies you might like, to powering self-driving cars, helping doctors diagnose illnesses, and even creating those annoying chatbots. It's just a bunch of clever algorithms, really.

Simple Chatbot

*Disclaimer, This is not a real AI, this is just a simple chatbot with limited prompts developed by an AI*

ChatBot: Hello there! Ask me something, I guess.

Projects

The chatbot that you see on this page was entirely generated by an LLM on my Laptop, via a distrobution of Arch Linux called
Nyarch Linux
Yes, this distro is very much focused to the Anime side of the linux community, but with the Local LLM provided by Gemini and its own instructions that unfortunately make it talk like that, it has generated a very simple "Ai"- esque Chatbot! And yeah, i agree that it is cringe, but hey, thats part of the fun of using built in stuff that you never asked to be installed, but use anyways!

Code Examples


// chatbot.js

document.addEventListener('DOMContentLoaded', () => {
    const chatDisplay = document.getElementById('chat-display');
    const userInput = document.getElementById('user-input');
    const sendButton = document.getElementById('send-button');

    // Function to add a message to the chat display
    function addMessage(sender, message) {
        const p = document.createElement('p');
        p.innerHTML = `${sender}: ${message}`;
        chatDisplay.appendChild(p);
        chatDisplay.scrollTop = chatDisplay.scrollHeight; // Auto-scroll to bottom
    }
                    

There is a bunch more code, but that reveals some secrets of the chatbot i await for you to discover!

Skills & Concepts