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

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 Buy Me A Coffee

🌟 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 Yuna Ai and AiFlow
  • 🌱 Learning PyTorch, PWAs, Swift UI, and JavaScript
  • πŸ‘― Looking to collaborate on YunaTTS
  • πŸ’‘ Exploring the intersection of AI and human consciousness
  • πŸ“ Regular writer on Medium
  • πŸŽ™οΈ Podcaster sharing insights on technology and life's deeper questions on YouTube
  • 🎨 Explore Yuki Story: Blog
  • 🀝 Open to networking with like-minded professionals and enthusiasts in the tech community

πŸ› οΈ Tech Stack

JavaScript Python React NodeJS

Anaconda Express.js Flask jQuery

Express.js PyTorch Swift Docker

πŸ† 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!

    CSS 136 15

  2. yunatts yunatts Public

    A leading text-to-speech (TTS) engine designed to provide a natural and expressive voice for your applications.

    Python 1

  3. aiflow aiflow Public

    Python library for LLM AI model evaluation and data management

    Python 2

  4. kawai-framework kawai-framework Public

    Cross platform native CSS and HTML library

    CSS 3

  5. Web novel Downloader Web novel Downloader
    1
    function extractAndDownloadAllChapters() {
    2
      // Find all containers that hold chapter text
    3
      const chapterContainers = document.querySelectorAll('.cha-words');
    4
    
                  
    5
      // Initialize an array to hold all chapter texts
  6. 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()];