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

πŸ‘‹ Hello, I'm Yuki Arimo

Software Developer and AI Engineer

yukiarimo

Patreon

πŸš€ About Me

  • πŸ”­ Currently working on Kawai Framework
  • 🌱 Learning PyTorch, React JS, Swift UI, and Java
  • πŸ‘― Looking to collaborate on Kiseki
  • 🀝 Seeking help with Yuna AI
  • πŸ’¬ Ask me about anything!
  • ⚑ Fun fact: I love exploring new AI tools

πŸ› οΈ Tech Stack

CSS3 HTML5 Java JavaScript

Markdown Python Swift Shell

Anaconda Express.js Flask jQuery

NPM NodeJS React Qt

WordPress Apache MySQL Figma

Adobe Photoshop PyTorch Docker

πŸ“Š GitHub Stats

Top Languages

GitHub Stats

GitHub Streak

πŸ† GitHub Trophies

GitHub Trophies

🌐 Connect with Me

Discord Medium Reddit Stack Overflow

Twitch Twitter YouTube Codepen

πŸ’‘ Random Dev Quote

Random Dev Quote

Thank you for visiting my profile! 😊

Pinned Loading

  1. yuna-ai yuna-ai Public

    Your Private Companion. The future AGI takeover starts here!

    HTML 87 11

  2. solo-leveling solo-leveling Public

    System for self leveling up

    CSS 1

  3. yukiarimo yukiarimo Public

    This is my main portfolio

    HTML 2

  4. kawai-framework kawai-framework Public

    Cross platform native CSS and HTML library

    JavaScript 2

  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")