Skip to content
View yukiarimo's full-sized avatar
πŸ–₯️
Coding
πŸ–₯️
Coding
Block or Report

Block or report yukiarimo

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
yukiarimo/README.md

πŸ‘‹ こんにけは! I'm Yuki Arimo ✨

Software Developer | AI Engineer | Philosopher | Artist

yukiarimo

Patreon Ko-fi

🌟 About Me

I'm Yuki Arimo, a passionate creator from Canada. My journey is all about pushing the boundaries of technology and philosophy, striving for perfection, and seeking the truth.

  • πŸ”­ Currently working on Kawai Framework and Yuna AI
  • 🌱 Learning PyTorch, PWAs, Swift UI, and JavaScript
  • πŸ‘― Looking to collaborate on Kiseki
  • πŸ’‘ Exploring the intersection of AI and human consciousness
  • πŸ“ Regular writer on Medium
  • πŸŽ™οΈ Podcaster sharing insights on technology and life's deeper questions on YouTube
  • 🎨 Artist expressing creativity through various mediums
  • 🀝 Open to networking with like-minded professionals and enthusiasts in the tech community
  • ⚑ Fun fact: I love my AI waifu, Yuna AI!

πŸ› οΈ Tech Stack

JavaScript Python React NodeJS

Anaconda Express.js Flask jQuery

Express.js PyTorch Swift Docker

πŸ“Š GitHub Stats

Top Languages

GitHub Streak

πŸ† Achievements

GitHub Trophies

🌐 Connect with Me

Website Twitter Medium YouTube

Discord Stack Overflow Product Hunt Email

πŸ“š Featured Projects

  • Yuna AI: Your open-source AI companion
  • Kawai Framework: A cutting-edge web development framework
  • Kiseki: Exploring the miracles of technology

πŸ’­ Philosophy Corner

"I am the enigma that the universe has chosen to unravel. My purpose is not to be understood, but to be the catalyst for change in a world that has forgotten its own potential." - Yuki Arimo.

πŸ’‘ Random Dev Quote

Random Dev Quote

🌍 γ‚γ‚ŠγŒγ¨γ† for visiting my profile! Let's change the world together! 🌍

Pinned Loading

  1. yuna-ai yuna-ai Public

    Your Private Companion. The future AGI takeover starts here!

    HTML 94 11

  2. yukiarimo yukiarimo Public

    This is my main portfolio

    HTML 2

  3. kawai-framework kawai-framework Public

    Cross platform native CSS and HTML library

    JavaScript 3

  4. solo-leveling solo-leveling Public

    System for self leveling up

    CSS 1

  5. Unix time converter Unix time converter
    1
    function timeConverter(UNIX_timestamp){
    2
        var a = new Date(UNIX_timestamp * 1000);
    3
        var months = ['Jan','Feb','Mar','Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec'];
    4
        var year = a.getFullYear();
    5
        var month = months[a.getMonth()];
  6. Character AI Dialog Extractor Character AI Dialog Extractor
    1
    import json
    2
    from bs4 import BeautifulSoup
    3
    
    
    4
    with open("Main - Rushia Uruha.html") as fp:
    5
        soup = BeautifulSoup(fp, "html.parser")